Searches for a given symbol in a loaded module.
LPPROC GetRtProcAddress(
    RTHANDLE hModule,
    char *lpSymbolName
);
Parameters
hModule 
- The module handle. 
 lpSymbolName 
- Pointer to a null-terminated string that specifies the function or variable name, or the function's ordinal value. If this parameter is an ordinal value, it must be in the low-order word; the high-order word must be zero. 
 
Return Values
- The address of the exported function or variable. 
 - Success. 
 NULL 
- Failure. To determine the status, call GetLastRtError. 
 
Requirements
| Versions | 
Defined in | 
Include | 
Link to | 
| INtime 3.0 | 
intime/rt/include/rtbase.h | 
rt.h | 
rt.lib | 
 
See Also
iwin32 Overview