en:docs:fapi:dosfreemodule

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:docs:fapi:dosfreemodule [2021/08/20 08:52] – created prokusheven:docs:fapi:dosfreemodule [2021/09/18 15:09] (current) prokushev
Line 1: Line 1:
 {{page>en:templates:fapiint}} {{page>en:templates:fapiint}}
  
 +====== 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 ===== 
- DosFreeModule (ModuleHandle)+<code c> 
 +DosFreeModule (ModuleHandle) 
 +</code>
  
-==Parameters== +===== Parameters =====
-;ModuleHandle (HMODULE) - input : Handle returned by DosLoadModule.+
  
-==Return Code== +  * ModuleHandle ([[HMODULE]]) - input Handle returned by DosLoadModule.
-;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:Return code descriptions are: 
 + 
 +  *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  rc;            /* return code */ USHORT  rc;            /* return code */
-</PRE>+</code>
  
-===MASM=== +==== MASM ===
-<PRE>+ 
 +<code c>
 EXTRN  DosFreeModule:FAR EXTRN  DosFreeModule:FAR
 INCL_DOSMODULEMGR   EQU 1 INCL_DOSMODULEMGR   EQU 1
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, the system tries to load the module from the program's directory (in case the user forgot to update LIBPATH). This example tries to load module ABCD. The system searches LIBPATH. If unsuccessful, the system tries to load the module from the program's directory (in case the user forgot to update LIBPATH).
-<PRE>+<code c>
 #define INCL_DOSMODULEMGR #define INCL_DOSMODULEMGR
  
Line 66: Line 78:
                          &ModuleHandle);     /* Module handle */                          &ModuleHandle);     /* Module handle */
    rc = DosFreeModule(ModuleHandle);         /* Module handle */    rc = DosFreeModule(ModuleHandle);         /* Module handle */
-</PRE>+</code>