###User Defined Function###
_WinAPI_DefSubclassProc

###Description###
Calls the next handler in a window's subclass chain.

###Syntax###
#include <WinAPIShellEx.au3>
_WinAPI_DefSubclassProc ( $hWnd, $iMsg, $wParam, $lParam )


###Parameters###
@@ParamTable@@
$hWnd
	Handle to the window being subclassed.
$iMsg
	The message to be sent.
$wParam
	The message-specific information.
$lParam
	The message-specific information.
@@End@@

###ReturnValue###
Returns the returned value specific to the message sent.


###Remarks###
The last handler in the subclass chain is the original window procedure for the specified window.
You do not need to call the default window procedure; this function calls it automatically.


###Related###


###See Also###
@@MsdnLink@@ DefSubclassProc


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