Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:docs:fapi:dosfreemodule [2021/09/11 08:06] – prokushev | en:docs:fapi:dosfreemodule [2021/09/18 15:09] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
{{page> | {{page> | ||
+ | ====== DosFreeModule ====== | ||
+ | |||
This call frees the reference to a dynamic link module for a process. When the dynamic link module is no longer needed by any process, the module is freed from system memory. | This call frees the reference to a dynamic link module for a process. When the dynamic link module is no longer needed by any process, the module is freed from system memory. | ||
- | ==Syntax== | + | ===== Syntax |
- | | + | <code c> |
+ | DosFreeModule (ModuleHandle) | ||
+ | </ | ||
- | ==Parameters== | + | ===== Parameters ===== |
- | ; | + | |
- | ==Return Code== | + | * ModuleHandle ([[HMODULE]]) - input : Handle returned by DosLoadModule. |
- | ;rc (USHORT) - return: | + | |
- | *0 NO_ERROR | + | ===== Return Code ===== |
- | *6 ERROR_INVALID_HANDLE | + | |
- | *12 ERROR_INVALID_ACCESS | + | rc ([[USHORT]]) - return: |
- | *95 ERROR_INTERRUPT | + | |
+ | | ||
+ | *6 ERROR_INVALID_HANDLE | ||
+ | *12 ERROR_INVALID_ACCESS | ||
+ | *95 ERROR_INTERRUPT | ||
+ | |||
+ | ===== Remarks ===== | ||
- | ==Remarks== | ||
The module identified by the handle must be loaded through [[DosLoadModule]]. An error is returned if the handle is invalid. | The module identified by the handle must be loaded through [[DosLoadModule]]. An error is returned if the handle is invalid. | ||
Line 23: | Line 31: | ||
When DosFreeModule returns to the caller, the module handle is no longer valid and is not used to reference the dynamic link module. Procedure entry addresses returned for this module are no longer valid and cause a protection fault if they are invoked. | When DosFreeModule returns to the caller, the module handle is no longer valid and is not used to reference the dynamic link module. Procedure entry addresses returned for this module are no longer valid and cause a protection fault if they are invoked. | ||
- | ==Bindings== | + | ===== Bindings ===== |
- | ===C=== | + | |
- | <PRE> | + | ==== C ==== |
+ | |||
+ | <code c> | ||
#define INCL_DOSMODULEMGR | #define INCL_DOSMODULEMGR | ||
Line 32: | Line 42: | ||
USHORT | USHORT | ||
- | </PRE> | + | </code> |
- | ===MASM=== | + | ==== MASM ==== |
- | <PRE> | + | |
+ | <code c> | ||
EXTRN DosFreeModule: | EXTRN DosFreeModule: | ||
INCL_DOSMODULEMGR | INCL_DOSMODULEMGR | ||
Line 43: | Line 54: | ||
Returns WORD | Returns WORD | ||
- | </PRE> | + | </code> |
+ | |||
+ | ==== Example ==== | ||
- | ==Example== | ||
This example tries to load module ABCD. The system searches LIBPATH. If unsuccessful, | This example tries to load module ABCD. The system searches LIBPATH. If unsuccessful, | ||
- | <PRE> | + | <code c> |
#define INCL_DOSMODULEMGR | #define INCL_DOSMODULEMGR | ||
Line 66: | Line 78: | ||
& | & | ||
rc = DosFreeModule(ModuleHandle); | rc = DosFreeModule(ModuleHandle); | ||
- | </PRE> | + | </code> |