###User Defined Function###
_WinAPI_CreateCompatibleDC

###Description###
Creates a memory device context compatible with the specified device

###Syntax###
#include <WinAPI.au3>
_WinAPI_CreateCompatibleDC ( $hDC )


###Parameters###
@@ParamTable@@
$hDC
	Handle to an existing DC. If this handle is 0, the function creates a memory DC compatible with the application's current screen.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Handle to a memory DC
Failure:	0
@@End@@


###Remarks###
When you no longer need the memory DC, call the <a href="_WinAPI_DeleteDC.htm">_WinAPI_DeleteDC()</a> function


###Related###
_WinAPI_DeleteDC


###See Also###
@@MsdnLink@@ CreateCompatibleDC
