Group: Dynamic-Link Library - Library: kernel32
The LoadLibrary function maps the specified executable module into the address space of the calling process.
Using LoadLibrary
Loading a string resource from an executable file
HMODULE LoadLibrary(
LPCTSTR lpFileName // file name of module
);
DECLARE INTEGER LoadLibrary IN kernel32;
STRING lpLibFileName
lpFileName [in] Pointer to a null-terminated string that names the executable module (either a .dll or .exe file).
If the function succeeds, the return value is a handle to the module
Once you get a return from this function, you probably know how to use it