###User Defined Function###
_WinAPI_DllGetVersion

###Description###
Retrieves a DLL-specific version information.

###Syntax###
#include <WinAPIShellEx.au3>
_WinAPI_DllGetVersion ( $sPath )


###Parameters###
@@ParamTable@@
$sPath
	The path to the DLL file from which information is retrieved.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	The array containing the following information:
	[0] - The major version.
	[1] - The minor version.
	[2] - The build number.
	[3] - The platform for which the DLL was built ($DLLVER_PLATFORM_*).
Failure 	Sets the @error flag to non-zero, @extended flag may contain the HRESULT error code.
@@End@@


###Remarks###
This function is not an API. It is exported by name from each DLL that implements it.
Currently, most of the Windows Shell and common controls DLLs implement DllGetVersion.
These include, but are not limited to, shell32.dll, comctl32.dll, shdocvw.dll, and shlwapi.dll.


###Related###


###See Also###
@@MsdnLink@@ DllGetVersion


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