Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:docs:fapi:dosfreemodule [2021/08/20 08:52] – created 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 |
- | ;rc (USHORT) - return:Return code descriptions are: | + | |
- | *0 NO_ERROR | + | |
- | *6 ERROR_INVALID_HANDLE | + | |
- | *12 ERROR_INVALID_ACCESS | + | |
- | *95 ERROR_INTERRUPT | + | |
- | ==Remarks== | + | ===== Return Code ===== |
- | The module identified by the handle must be loaded through [[DosLoadModule (OS/2 1.x)|DosLoadModule]]. An error is returned if the handle is invalid. | + | |
+ | rc ([[USHORT]]) - return: | ||
+ | |||
+ | *0 NO_ERROR | ||
+ | *6 ERROR_INVALID_HANDLE | ||
+ | *12 ERROR_INVALID_ACCESS | ||
+ | *95 ERROR_INTERRUPT | ||
+ | |||
+ | ===== Remarks ===== | ||
+ | |||
+ | The module identified by the handle must be loaded through [[DosLoadModule]]. An error is returned if the handle is invalid. | ||
If any exit list routines were registered as a result of this module being loaded, the module may not be freed and ERROR_INVALID_ACCESS may be returned. | If any exit list routines were registered as a result of this module being loaded, the module may not be freed and ERROR_INVALID_ACCESS may be returned. | ||
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> |