|
|
|
@ -38,6 +38,7 @@ grpc_call_details_destroy_type grpc_call_details_destroy_import; |
|
|
|
|
grpc_register_plugin_type grpc_register_plugin_import; |
|
|
|
|
grpc_init_type grpc_init_import; |
|
|
|
|
grpc_shutdown_type grpc_shutdown_import; |
|
|
|
|
grpc_is_initialized_type grpc_is_initialized_import; |
|
|
|
|
grpc_version_string_type grpc_version_string_import; |
|
|
|
|
grpc_g_stands_for_type grpc_g_stands_for_import; |
|
|
|
|
grpc_completion_queue_factory_lookup_type grpc_completion_queue_factory_lookup_import; |
|
|
|
@ -291,6 +292,7 @@ void grpc_rb_load_imports(HMODULE library) { |
|
|
|
|
grpc_register_plugin_import = (grpc_register_plugin_type) GetProcAddress(library, "grpc_register_plugin"); |
|
|
|
|
grpc_init_import = (grpc_init_type) GetProcAddress(library, "grpc_init"); |
|
|
|
|
grpc_shutdown_import = (grpc_shutdown_type) GetProcAddress(library, "grpc_shutdown"); |
|
|
|
|
grpc_is_initialized_import = (grpc_is_initialized_type) GetProcAddress(library, "grpc_is_initialized"); |
|
|
|
|
grpc_version_string_import = (grpc_version_string_type) GetProcAddress(library, "grpc_version_string"); |
|
|
|
|
grpc_g_stands_for_import = (grpc_g_stands_for_type) GetProcAddress(library, "grpc_g_stands_for"); |
|
|
|
|
grpc_completion_queue_factory_lookup_import = (grpc_completion_queue_factory_lookup_type) GetProcAddress(library, "grpc_completion_queue_factory_lookup"); |
|
|
|
|