Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
93da2841
Commit
93da2841
authored
8 years ago
by
Stanley Cheung
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7510 from stanley-cheung/regenerate-template-files
Regenerate template files
parents
c03c575c
bc3b6f31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
grpc.def
+1
-0
1 addition, 0 deletions
grpc.def
src/ruby/ext/grpc/rb_grpc_imports.generated.c
+2
-0
2 additions, 0 deletions
src/ruby/ext/grpc/rb_grpc_imports.generated.c
src/ruby/ext/grpc/rb_grpc_imports.generated.h
+3
-0
3 additions, 0 deletions
src/ruby/ext/grpc/rb_grpc_imports.generated.h
with
6 additions
and
0 deletions
grpc.def
+
1
−
0
View file @
93da2841
...
...
@@ -148,6 +148,7 @@ EXPORTS
gpr_slice_ref
gpr_slice_unref
gpr_slice_new
gpr_slice_new_with_user_data
gpr_slice_new_with_len
gpr_slice_malloc
gpr_slice_from_copied_string
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.c
+
2
−
0
View file @
93da2841
...
...
@@ -186,6 +186,7 @@ gpr_set_log_function_type gpr_set_log_function_import;
gpr_slice_ref_type
gpr_slice_ref_import
;
gpr_slice_unref_type
gpr_slice_unref_import
;
gpr_slice_new_type
gpr_slice_new_import
;
gpr_slice_new_with_user_data_type
gpr_slice_new_with_user_data_import
;
gpr_slice_new_with_len_type
gpr_slice_new_with_len_import
;
gpr_slice_malloc_type
gpr_slice_malloc_import
;
gpr_slice_from_copied_string_type
gpr_slice_from_copied_string_import
;
...
...
@@ -458,6 +459,7 @@ void grpc_rb_load_imports(HMODULE library) {
gpr_slice_ref_import
=
(
gpr_slice_ref_type
)
GetProcAddress
(
library
,
"gpr_slice_ref"
);
gpr_slice_unref_import
=
(
gpr_slice_unref_type
)
GetProcAddress
(
library
,
"gpr_slice_unref"
);
gpr_slice_new_import
=
(
gpr_slice_new_type
)
GetProcAddress
(
library
,
"gpr_slice_new"
);
gpr_slice_new_with_user_data_import
=
(
gpr_slice_new_with_user_data_type
)
GetProcAddress
(
library
,
"gpr_slice_new_with_user_data"
);
gpr_slice_new_with_len_import
=
(
gpr_slice_new_with_len_type
)
GetProcAddress
(
library
,
"gpr_slice_new_with_len"
);
gpr_slice_malloc_import
=
(
gpr_slice_malloc_type
)
GetProcAddress
(
library
,
"gpr_slice_malloc"
);
gpr_slice_from_copied_string_import
=
(
gpr_slice_from_copied_string_type
)
GetProcAddress
(
library
,
"gpr_slice_from_copied_string"
);
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.h
+
3
−
0
View file @
93da2841
...
...
@@ -509,6 +509,9 @@ extern gpr_slice_unref_type gpr_slice_unref_import;
typedef
gpr_slice
(
*
gpr_slice_new_type
)(
void
*
p
,
size_t
len
,
void
(
*
destroy
)(
void
*
));
extern
gpr_slice_new_type
gpr_slice_new_import
;
#define gpr_slice_new gpr_slice_new_import
typedef
gpr_slice
(
*
gpr_slice_new_with_user_data_type
)(
void
*
p
,
size_t
len
,
void
(
*
destroy
)(
void
*
),
void
*
user_data
);
extern
gpr_slice_new_with_user_data_type
gpr_slice_new_with_user_data_import
;
#define gpr_slice_new_with_user_data gpr_slice_new_with_user_data_import
typedef
gpr_slice
(
*
gpr_slice_new_with_len_type
)(
void
*
p
,
size_t
len
,
void
(
*
destroy
)(
void
*
,
size_t
));
extern
gpr_slice_new_with_len_type
gpr_slice_new_with_len_import
;
#define gpr_slice_new_with_len gpr_slice_new_with_len_import
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment