###User Defined Function###
_WinAPI_GetProcAddress

###Description###
Retrieves the address of an exported function or variable from the specified module

###Syntax###
#include <WinAPI.au3>
_WinAPI_GetProcAddress ( $hModule, $vName )


###Parameters###
@@ParamTable@@
$hModule
	A handle to the module that contains the function or variable
$vName
	The function or variable name, or the function's ordinal value
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	The address of the exported function or variable
Failure:	0, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###


###Related###
_WinAPI_LoadLibrary, _WinAPI_LoadLibraryEx, _WinAPI_GetModuleHandle


###See Also###
@@MsdnLink@@ GetProcAddress


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