00001 /*-----------------------------------------------------------------------------------*/ 00002 /* INRIA 2006 */ 00003 /* Allan CORNET */ 00004 /*-----------------------------------------------------------------------------------*/ 00005 #ifndef __GETMAXMALLOC_H__ 00006 #define __GETMAXMALLOC_H__ 00007 /*-----------------------------------------------------------------------------------*/ 00008 #ifdef _MSC_VER 00009 #ifdef EXPORT_MALLOC_DLL 00010 #define IMPORT_EXPORT_MALLOC_DLL __declspec(dllexport) 00011 #else 00012 #define IMPORT_EXPORT_MALLOC_DLL __declspec(dllimport) 00013 #endif 00014 #else 00015 #define IMPORT_EXPORT_MALLOC_DLL extern 00016 #endif 00017 00018 IMPORT_EXPORT_MALLOC_DLL unsigned long GetLargestFreeMemoryRegion(void); 00019 00020 #endif /* __GETMAXMALLOC_H__ */ 00021 /*-----------------------------------------------------------------------------------*/ 00022
1.5.1