###User Defined Function###
_WinAPI_EnumResourceLanguages

###Description###
Enumerates a language-specific resources, of the specified type and name, associated with a binary module.

###Syntax###
#include <WinAPIRes.au3>
_WinAPI_EnumResourceLanguages ( $hModule, $sType, $sName )


###Parameters###
@@ParamTable@@
$hModule
	The handle to a module to be searched.
	Also, this parameter can specify the name of the module to load, it must be a full or relative path.
	If this parameter is 0 or an empty string, that is equivalent to passing in a handle to the module used to create the current process.
$sType
	The type of resource for which the language is being enumerated.
	It can be a string or an integer value representing a predefined resource type.
$sName
	The name of the resource for which the language is being enumerated.
	It can be a string or an integer value representing a predefined resource type.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	The array of the language identifiers for the specified resource type and name.
Failure 	Sets the @error flag to non-zero.
@@End@@


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ EnumResourceLanguages


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