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
bb4046cd
Commit
bb4046cd
authored
7 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Regenerate projects
parent
e38948a1
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
+4
-1
4 additions, 1 deletion
src/ruby/ext/grpc/rb_grpc_imports.generated.h
with
7 additions
and
1 deletion
grpc.def
+
1
−
0
View file @
bb4046cd
...
...
@@ -142,6 +142,7 @@ EXPORTS
grpc_server_credentials_set_auth_metadata_processor
grpc_slice_ref
grpc_slice_unref
grpc_slice_copy
grpc_slice_new
grpc_slice_new_with_user_data
grpc_slice_new_with_len
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.c
+
2
−
0
View file @
bb4046cd
...
...
@@ -180,6 +180,7 @@ grpc_call_set_credentials_type grpc_call_set_credentials_import;
grpc_server_credentials_set_auth_metadata_processor_type
grpc_server_credentials_set_auth_metadata_processor_import
;
grpc_slice_ref_type
grpc_slice_ref_import
;
grpc_slice_unref_type
grpc_slice_unref_import
;
grpc_slice_copy_type
grpc_slice_copy_import
;
grpc_slice_new_type
grpc_slice_new_import
;
grpc_slice_new_with_user_data_type
grpc_slice_new_with_user_data_import
;
grpc_slice_new_with_len_type
grpc_slice_new_with_len_import
;
...
...
@@ -481,6 +482,7 @@ void grpc_rb_load_imports(HMODULE library) {
grpc_server_credentials_set_auth_metadata_processor_import
=
(
grpc_server_credentials_set_auth_metadata_processor_type
)
GetProcAddress
(
library
,
"grpc_server_credentials_set_auth_metadata_processor"
);
grpc_slice_ref_import
=
(
grpc_slice_ref_type
)
GetProcAddress
(
library
,
"grpc_slice_ref"
);
grpc_slice_unref_import
=
(
grpc_slice_unref_type
)
GetProcAddress
(
library
,
"grpc_slice_unref"
);
grpc_slice_copy_import
=
(
grpc_slice_copy_type
)
GetProcAddress
(
library
,
"grpc_slice_copy"
);
grpc_slice_new_import
=
(
grpc_slice_new_type
)
GetProcAddress
(
library
,
"grpc_slice_new"
);
grpc_slice_new_with_user_data_import
=
(
grpc_slice_new_with_user_data_type
)
GetProcAddress
(
library
,
"grpc_slice_new_with_user_data"
);
grpc_slice_new_with_len_import
=
(
grpc_slice_new_with_len_type
)
GetProcAddress
(
library
,
"grpc_slice_new_with_len"
);
...
...
This diff is collapsed.
Click to expand it.
src/ruby/ext/grpc/rb_grpc_imports.generated.h
+
4
−
1
View file @
bb4046cd
...
...
@@ -491,6 +491,9 @@ extern grpc_slice_ref_type grpc_slice_ref_import;
typedef
void
(
*
grpc_slice_unref_type
)(
grpc_slice
s
);
extern
grpc_slice_unref_type
grpc_slice_unref_import
;
#define grpc_slice_unref grpc_slice_unref_import
typedef
grpc_slice
(
*
grpc_slice_copy_type
)(
grpc_slice
s
);
extern
grpc_slice_copy_type
grpc_slice_copy_import
;
#define grpc_slice_copy grpc_slice_copy_import
typedef
grpc_slice
(
*
grpc_slice_new_type
)(
void
*
p
,
size_t
len
,
void
(
*
destroy
)(
void
*
));
extern
grpc_slice_new_type
grpc_slice_new_import
;
#define grpc_slice_new grpc_slice_new_import
...
...
@@ -530,7 +533,7 @@ extern grpc_slice_sub_no_ref_type grpc_slice_sub_no_ref_import;
typedef
grpc_slice
(
*
grpc_slice_split_tail_type
)(
grpc_slice
*
s
,
size_t
split
);
extern
grpc_slice_split_tail_type
grpc_slice_split_tail_import
;
#define grpc_slice_split_tail grpc_slice_split_tail_import
typedef
grpc_slice
(
*
grpc_slice_split_tail_maybe_ref_type
)(
grpc_slice
*
s
,
size_t
split
,
int
inc_refs
);
typedef
grpc_slice
(
*
grpc_slice_split_tail_maybe_ref_type
)(
grpc_slice
*
s
,
size_t
split
,
grpc_slice_ref_whom
ref_whom
);
extern
grpc_slice_split_tail_maybe_ref_type
grpc_slice_split_tail_maybe_ref_import
;
#define grpc_slice_split_tail_maybe_ref grpc_slice_split_tail_maybe_ref_import
typedef
grpc_slice
(
*
grpc_slice_split_head_type
)(
grpc_slice
*
s
,
size_t
split
);
...
...
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