en:docs:fapi:dosgetmodhandle

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:docs:fapi:dosgetmodhandle [2021/11/04 13:56] prokusheven:docs:fapi:dosgetmodhandle [2021/11/04 14:10] (current) prokushev
Line 1: Line 1:
 {{page>en:templates:fapiint}} {{page>en:templates:fapiint}}
 +
 +====== DosGetModHandle ======
  
 This call returns a handle to a previously loaded dynamic link module. This call returns a handle to a previously loaded dynamic link module.
  
-==Syntax==+===== Syntax ===== 
 +<code c>
  DosGetModHandle (ModuleName, ModuleHandle)  DosGetModHandle (ModuleName, ModuleHandle)
 +</code>
  
-==Parameters== +===== Parameters =====
-;ModuleName (PSZ) - input : Address of the ASCIIZ name string containing the dynamic link module name or the pathname string. The filename extension used for dynamic link libraries when a module name is provided is .DLL. When a pathname is provided, the module name may have any extension. +
-;ModuleHandle (PHMODULE) - output : Address of the handle for the dynamic link module.+
  
-==Return Code== +  * ModuleName (PSZ) - input : Address of the ASCIIZ name string containing the dynamic link module name or the pathname string. The filename extension used for dynamic link libraries when a module name is provided is .DLL. When a pathname is provided, the module name may have any extension. 
-;rc (USHORT) - return:Return code descriptions are: +  * ModuleHandle (PHMODULE) - output : Address of the handle for the dynamic link module. 
-*0 NO_ERROR + 
-*95 ERROR_INTERRUPT +===== Return Code ===== 
-*123 ERROR_INVALID_NAME + 
-*126 ERROR_MOD_NOT_FOUND+rc (USHORT) - return:Return code descriptions are: 
 + 
 +  *0 NO_ERROR 
 +  *95 ERROR_INTERRUPT 
 +  *123 ERROR_INVALID_NAME 
 +  *126 ERROR_MOD_NOT_FOUND 
 + 
 +===== Remarks =====
  
-==Remarks== 
 If a module name is provided, it must match the name of a module residing in the LIBPATH that is currently loaded. Otherwise an error code is returned. If a pathname is provided, the expanded pathname must match the full pathname of a module that is currently loaded. If a module name is provided, it must match the name of a module residing in the LIBPATH that is currently loaded. Otherwise an error code is returned. If a pathname is provided, the expanded pathname must match the full pathname of a module that is currently loaded.
  
 The handle returned by this call can be used with DosGetModName. It should not be used with DosGetProcAddr for access to the already loaded dynamic link module. Instead, DosLoadModule should be issued to ensure that the calling process is attached to the module. The handle returned by this call can be used with DosGetModName. It should not be used with DosGetProcAddr for access to the already loaded dynamic link module. Instead, DosLoadModule should be issued to ensure that the calling process is attached to the module.
  
-==Bindings== +===== Bindings ===== 
-===C=== + 
-<PRE>+====C==== 
 +<code c>
 #define INCL_DOSMODULEMGR #define INCL_DOSMODULEMGR
  
Line 33: Line 42:
  
 USHORT           rc;            /* return code */ USHORT           rc;            /* return code */
-</PRE>+</code>
  
-===MASM=== +====MASM==== 
-<PRE>+<code asm>
 EXTRN  DosGetModHandle:FAR EXTRN  DosGetModHandle:FAR
 INCL_DOSMODULEMGR   EQU 1 INCL_DOSMODULEMGR   EQU 1
Line 45: Line 54:
  
 Returns WORD Returns WORD
-</PRE>+</code>
  
 {{page>en:templates:fapi}} {{page>en:templates:fapi}}