|
|
@ -39,6 +39,7 @@ grpc_register_plugin_type grpc_register_plugin_import; |
|
|
|
grpc_init_type grpc_init_import; |
|
|
|
grpc_init_type grpc_init_import; |
|
|
|
grpc_shutdown_type grpc_shutdown_import; |
|
|
|
grpc_shutdown_type grpc_shutdown_import; |
|
|
|
grpc_is_initialized_type grpc_is_initialized_import; |
|
|
|
grpc_is_initialized_type grpc_is_initialized_import; |
|
|
|
|
|
|
|
grpc_maybe_wait_for_async_shutdown_type grpc_maybe_wait_for_async_shutdown_import; |
|
|
|
grpc_version_string_type grpc_version_string_import; |
|
|
|
grpc_version_string_type grpc_version_string_import; |
|
|
|
grpc_g_stands_for_type grpc_g_stands_for_import; |
|
|
|
grpc_g_stands_for_type grpc_g_stands_for_import; |
|
|
|
grpc_completion_queue_factory_lookup_type grpc_completion_queue_factory_lookup_import; |
|
|
|
grpc_completion_queue_factory_lookup_type grpc_completion_queue_factory_lookup_import; |
|
|
@ -306,6 +307,7 @@ void grpc_rb_load_imports(HMODULE library) { |
|
|
|
grpc_init_import = (grpc_init_type) GetProcAddress(library, "grpc_init"); |
|
|
|
grpc_init_import = (grpc_init_type) GetProcAddress(library, "grpc_init"); |
|
|
|
grpc_shutdown_import = (grpc_shutdown_type) GetProcAddress(library, "grpc_shutdown"); |
|
|
|
grpc_shutdown_import = (grpc_shutdown_type) GetProcAddress(library, "grpc_shutdown"); |
|
|
|
grpc_is_initialized_import = (grpc_is_initialized_type) GetProcAddress(library, "grpc_is_initialized"); |
|
|
|
grpc_is_initialized_import = (grpc_is_initialized_type) GetProcAddress(library, "grpc_is_initialized"); |
|
|
|
|
|
|
|
grpc_maybe_wait_for_async_shutdown_import = (grpc_maybe_wait_for_async_shutdown_type) GetProcAddress(library, "grpc_maybe_wait_for_async_shutdown"); |
|
|
|
grpc_version_string_import = (grpc_version_string_type) GetProcAddress(library, "grpc_version_string"); |
|
|
|
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_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"); |
|
|
|
grpc_completion_queue_factory_lookup_import = (grpc_completion_queue_factory_lookup_type) GetProcAddress(library, "grpc_completion_queue_factory_lookup"); |
|
|
|