Go to the source code of this file.
◆ GPR_GLOBAL_CONFIG_DECLARE_BOOL
#define GPR_GLOBAL_CONFIG_DECLARE_BOOL |
( |
|
name | ) |
|
Value: extern bool gpr_global_config_get_##name(); \
extern void gpr_global_config_set_##name(bool value)
◆ GPR_GLOBAL_CONFIG_DECLARE_INT32
#define GPR_GLOBAL_CONFIG_DECLARE_INT32 |
( |
|
name | ) |
|
Value: extern int32_t gpr_global_config_get_##name(); \
extern void gpr_global_config_set_##name(int32_t value)
◆ GPR_GLOBAL_CONFIG_DECLARE_STRING
#define GPR_GLOBAL_CONFIG_DECLARE_STRING |
( |
|
name | ) |
|
Value:
extern void gpr_global_config_set_##name(const char* value)
std::unique_ptr< T, DefaultDeleteChar > UniquePtr
Definition: memory.h:45
◆ GPR_GLOBAL_CONFIG_GET
#define GPR_GLOBAL_CONFIG_GET |
( |
|
name | ) |
gpr_global_config_get_##name() |
◆ GPR_GLOBAL_CONFIG_SET
#define GPR_GLOBAL_CONFIG_SET |
( |
|
name, |
|
|
|
value |
|
) |
| gpr_global_config_set_##name(value) |