INtime SDK Help
LoadLibrary (iwin32)
INtime SDK v7.1 > About INtime > Alternate APIs > iwin32 API > iwin32 API > LoadLibrary (iwin32)

Maps the specified RSL into the address space of the calling process.

HMODULE LoadLibrary(
    LPCTSTR lpFileName
);

Parameters

lpFileName
Pointer to a null-terminated string that names the RSL file.

If the string does not specify a path, the function uses a standard search strategy to find the file. For more information, see LoadRtLibrary.

Remarks

This function is implemented via the INtime LoadRtLibrary function.

Return Values

A handle to the module
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