diff trunk/src/Support/FileList.h @ 330:0a8e7d0c70dc

- Hacks to get a basic AIM-C compiling on windows
author tomwalters
date Thu, 22 Jul 2010 04:24:55 +0000
parents 30dde71d0230
children
line wrap: on
line diff
--- a/trunk/src/Support/FileList.h	Thu Jul 22 04:14:20 2010 +0000
+++ b/trunk/src/Support/FileList.h	Thu Jul 22 04:24:55 2010 +0000
@@ -25,6 +25,13 @@
  * \version \$Id$
  */
 
+#if defined(_WINDOWS)
+#  include <windows.h>
+#  ifndef PATH_MAX
+#    define PATH_MAX _MAX_PATH
+#  endif
+#endif
+#include <limits.h>
 #include <string>
 #include <utility>
 #include <vector>