###User Defined Function###
_WinAPI_LoadLibrary

###Description###
Maps a specified executable module into the address space of the calling process

###Syntax###
#include <WinAPI.au3>
_WinAPI_LoadLibrary ( $sFileName )


###Parameters###
@@ParamTable@@
$sFileName
	Names a Win32 executable module (either a .DLL or an .EXE file). The name specified is the
	filename of the executable module.
@@End@@

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


###Remarks###
None.


###Related###
_WinAPI_LoadLibraryEx, _WinAPI_FreeLibrary


###See Also###
@@MsdnLink@@ LoadLibrary
