###User Defined Function###
_WinAPI_GetModuleHandle

###Description###
Returns a module handle for the specified module

###Syntax###
#include <WinAPI.au3>
_WinAPI_GetModuleHandle ( $sModuleName )


###Parameters###
@@ParamTable@@
$sModuleName
	Names a Win32 module (either a .DLL or .EXE file). If the filename extension is omitted, the
	default library extension .DLL is appended. The filename string can include a trailing point character (.) to
	indicate that the module name has no extension. The string does not have to specify a path. The name is
	compared (case independently) to the names of modules currently mapped into the address space of the calling
	process. If this parameter is the Null keyword then the function returns a handle of the file used to create the calling process.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	The handle to the specified module
Failure:	0, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
None.


###Related###


###See Also###
@@MsdnLink@@ GetModuleHandle


###Example###
@@IncludeExample@@
