|
|
@ -215,7 +215,9 @@ grpc_slice_buffer_swap_type grpc_slice_buffer_swap_import; |
|
|
|
grpc_slice_buffer_move_into_type grpc_slice_buffer_move_into_import; |
|
|
|
grpc_slice_buffer_move_into_type grpc_slice_buffer_move_into_import; |
|
|
|
grpc_slice_buffer_trim_end_type grpc_slice_buffer_trim_end_import; |
|
|
|
grpc_slice_buffer_trim_end_type grpc_slice_buffer_trim_end_import; |
|
|
|
grpc_slice_buffer_move_first_type grpc_slice_buffer_move_first_import; |
|
|
|
grpc_slice_buffer_move_first_type grpc_slice_buffer_move_first_import; |
|
|
|
|
|
|
|
grpc_slice_buffer_move_first_into_buffer_type grpc_slice_buffer_move_first_into_buffer_import; |
|
|
|
grpc_slice_buffer_take_first_type grpc_slice_buffer_take_first_import; |
|
|
|
grpc_slice_buffer_take_first_type grpc_slice_buffer_take_first_import; |
|
|
|
|
|
|
|
grpc_slice_buffer_undo_take_first_type grpc_slice_buffer_undo_take_first_import; |
|
|
|
gpr_malloc_type gpr_malloc_import; |
|
|
|
gpr_malloc_type gpr_malloc_import; |
|
|
|
gpr_free_type gpr_free_import; |
|
|
|
gpr_free_type gpr_free_import; |
|
|
|
gpr_realloc_type gpr_realloc_import; |
|
|
|
gpr_realloc_type gpr_realloc_import; |
|
|
@ -504,7 +506,9 @@ void grpc_rb_load_imports(HMODULE library) { |
|
|
|
grpc_slice_buffer_move_into_import = (grpc_slice_buffer_move_into_type) GetProcAddress(library, "grpc_slice_buffer_move_into"); |
|
|
|
grpc_slice_buffer_move_into_import = (grpc_slice_buffer_move_into_type) GetProcAddress(library, "grpc_slice_buffer_move_into"); |
|
|
|
grpc_slice_buffer_trim_end_import = (grpc_slice_buffer_trim_end_type) GetProcAddress(library, "grpc_slice_buffer_trim_end"); |
|
|
|
grpc_slice_buffer_trim_end_import = (grpc_slice_buffer_trim_end_type) GetProcAddress(library, "grpc_slice_buffer_trim_end"); |
|
|
|
grpc_slice_buffer_move_first_import = (grpc_slice_buffer_move_first_type) GetProcAddress(library, "grpc_slice_buffer_move_first"); |
|
|
|
grpc_slice_buffer_move_first_import = (grpc_slice_buffer_move_first_type) GetProcAddress(library, "grpc_slice_buffer_move_first"); |
|
|
|
|
|
|
|
grpc_slice_buffer_move_first_into_buffer_import = (grpc_slice_buffer_move_first_into_buffer_type) GetProcAddress(library, "grpc_slice_buffer_move_first_into_buffer"); |
|
|
|
grpc_slice_buffer_take_first_import = (grpc_slice_buffer_take_first_type) GetProcAddress(library, "grpc_slice_buffer_take_first"); |
|
|
|
grpc_slice_buffer_take_first_import = (grpc_slice_buffer_take_first_type) GetProcAddress(library, "grpc_slice_buffer_take_first"); |
|
|
|
|
|
|
|
grpc_slice_buffer_undo_take_first_import = (grpc_slice_buffer_undo_take_first_type) GetProcAddress(library, "grpc_slice_buffer_undo_take_first"); |
|
|
|
gpr_malloc_import = (gpr_malloc_type) GetProcAddress(library, "gpr_malloc"); |
|
|
|
gpr_malloc_import = (gpr_malloc_type) GetProcAddress(library, "gpr_malloc"); |
|
|
|
gpr_free_import = (gpr_free_type) GetProcAddress(library, "gpr_free"); |
|
|
|
gpr_free_import = (gpr_free_type) GetProcAddress(library, "gpr_free"); |
|
|
|
gpr_realloc_import = (gpr_realloc_type) GetProcAddress(library, "gpr_realloc"); |
|
|
|
gpr_realloc_import = (gpr_realloc_type) GetProcAddress(library, "gpr_realloc"); |
|
|
|