###User Defined Function###
_WinAPI_FindWindow

###Description###
Retrieves the handle to the top-level window whose class name and window name match

###Syntax###
#include <WinAPI.au3>
_WinAPI_FindWindow ( $sClassName, $sWindowName )


###Parameters###
@@ParamTable@@
$sClassName
	A string that specifies the class name or is an atom that identifies the class-name string. If
	this parameter is an atom, it must be a global atom created by a call to the GlobalAddAtom function. The
	atom, a 16-bit value, must be placed in the low-order word of the $sClassName string and the high-order word
	must be zero.
$sWindowName
	A string that specifies the window name. If this parameter is blank, all window names match.
@@End@@

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


###Remarks###
None.


###Related###


###See Also###
@@MsdnLink@@ FindWindow
