Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenutility.cpp
Go to the documentation of this file.
00001 00002 #include "precomp.h" 00003 00004 void *operator new(size_t size) 00005 { 00006 return LocalAlloc(LMEM_ZEROINIT, size); 00007 } 00008 00009 void operator delete(void *p) 00010 { 00011 LocalFree(p); 00012 } 00013 Generated on Sat May 26 2012 04:17:37 for ReactOS by
1.7.6.1
|