@
andrebernard : Mouais, mais quand ça ne fonctionne pas, que faire ??
FreeLibraryFreeLibrary
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.
BOOL FreeLibrary( HMODULE hLibModule // handle to loaded library module );
Parameters
- hLibModule
- Handle to the loaded library module. The LoadLibrary or GetModuleHandle function returns this handle.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
