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