April 19, 2024

Dynamic Windows Function [dw_module_symbol]

Syntax

int dw_module_symbol(HMOD handle, char *name, void **func)

Parameters

HMOD handle: Module handle returned by dw_module_load()
char *name: Name of the symbol you want the address of.
void **func: A pointer to a function pointer, to obtain the address.

Returns

int DW_ERROR_NONE (0) on success.

Description

Queries the address of a symbol within open handle.