###User Defined Function###
_WinAPI_KillTimer

###Description###
Destroys the specified timer.

###Syntax###
#include <WinAPISys.au3>
_WinAPI_KillTimer ( $hWnd, $iTimerID )


###Parameters###
@@ParamTable@@
$hWnd
	Handle to the window associated with the specified timer. This value must be the same as the
	$hWnd value passed to the _WinAPI_SetTimer() function that created the timer.
$iTimerID
	The timer identifier which specifies the timer to be destroyed.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	True.
Failure 	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
This function does not remove WM_TIMER messages already posted to the message queue.


###Related###
_WinAPI_SetTimer


###See Also###
@@MsdnLink@@ KillTimer
