INtime SDK Help
GetProcAddress (iwin32)
INtime SDK v7 > About INtime > Alternate APIs > iwin32 API > iwin32 API > GetProcAddress (iwin32)

Retrieves the address of a function or variable exported from the given RSL.

FARPROC GetProcAddress(
    HMODULE hModule,
    LPCSTR lpProcName
);

Parameters

hModule
Handle to the RSL module that contains the function.
The LoadLibrary or GetModuleHandle function returns this handle.
lpProcName
Pointer to a null-terminated string that contains the function name or specifies the function's ordinal value.

Remarks

This function is implemented via the INtime GetRtProcAddress function.

Return Values

Address of RSL's exported function
Success.
NULL
Failure. For extended error information, see GetLastError.

Requirements

Versions Defined in Include Link to
INtime 3.0 intime/rt/include/winbase.h windows.h iwin32.lib

Note

This function operates in the real-time portion of your application.

See Also

Shared Libraries