Typesafe registration and retrieval of functions that may not be present (i.e. functions exported by optional modules)
◆ APR_DECLARE_OPTIONAL_FN
Declare an optional function.
- Parameters
-
ret | The return type of the function |
name | The name of the function |
args | The function arguments (including brackets) |
◆ APR_OPTIONAL_FN_TYPE
#define APR_OPTIONAL_FN_TYPE |
( |
|
name | ) |
apr_OFN_##name##_t |
The type of an optional function.
- Parameters
-
name | The name of the function |
◆ APR_REGISTER_OPTIONAL_FN
#define APR_REGISTER_OPTIONAL_FN |
( |
|
name | ) |
|
Value: do { \
APR_OPTIONAL_FN_TYPE(
name) *apu__opt =
name; \
} while (0)
void() apr_opt_fn_t(void)
Definition: apr_optional.h:59
const char * name
Definition: mod_dav.h:810
Register an optional function. This can be later retrieved, type-safely, by name. Like all global functions, the name must be unique. Note that, confusingly but correctly, the function itself can be static!
- Parameters
-
name | The name of the function |
◆ APR_RETRIEVE_OPTIONAL_FN
Retrieve an optional function. Returns NULL if the function is not present.
- Parameters
-
name | The name of the function |
◆ apr_opt_fn_t
typedef void() apr_opt_fn_t(void) |
XXX: This doesn't belong here, then! Private function! DO NOT USE!
◆ apr_dynamic_fn_register()
void apr_dynamic_fn_register |
( |
const char * |
szName, |
|
|
apr_opt_fn_t * |
pfn |
|
) |
| |
◆ apr_dynamic_fn_retrieve()
apr_opt_fn_t* apr_dynamic_fn_retrieve |
( |
const char * |
szName | ) |
|
Private function! DO NOT USE!