00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 Open Download Manager Copyright (c) 2008-2010 OpenDownloadManager.ORG 00004 */ 00005 00006 #ifndef __COMMON_H_ 00007 #define __COMMON_H_ 00008 00009 #include "system.h" 00010 #include "fsinet.h" 00011 00012 #define SAFE_DELETE_ARRAY(a) {if (a) {delete [] a; a = NULL;}} 00013 00014 #endif
1.5.6