INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- The `FreeLibrary' function decrements the reference count of the
-- loaded dynamic-link library (DLL) module. When the reference count
-- reaches zero, the module is unmapped from the address space
-- of the calling process and the handle is no longer valid.
-- The 'GetModuleHandle' function returns a module handle for the
-- specified module if the file has been mapped
-- into the address space of the calling process.
-- The `LoadLibrary' function maps the specified executable module
-- into the address space of the calling process.
-- The `LoadLibraryEx' function maps a specified executable module
-- into the address space of the calling process. The executable
-- module can be a .DLL or an .EXE file. The specified module
-- may cause other modules to be mapped into the address space.
-- The GetProcAddress function returns the address of the specified
-- exported dynamic-link library (DLL) function
-- If the function succeeds, the return value is the address of the
-- DLL's exported function. If the function fails, the return value is NULL.
-- HRSRC
-- The FindResource function determines the location of a resource with
-- the specified type and name in the specified module.
-- HGLOBAL
-- The LoadResource function loads the specified resource into global
-- memory.
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |