Win32 module management functionality is similar to that of the Windows 16-bit API.
The module management functions include:
| Function | Description |
| FindExecutable | Retrieves the handle of an executable file. |
| FreeLibrary | Decreases the reference count of a library by one and removes it from memory if the reference count is zero |
| FreeModule | Decreases the reference count of a module by one and removes it from memory if the reference count is zero |
| GetModuleFileName | Returns a module filename |
| GetModuleHandle | Returns the module handle of a module |
| GetProcAddress | Returns the address of a function in a module |
| LoadLibrary | Loads a library module |
| LoadModule | Executes a separate application |