--- \Documents and Settings\Trent Gamblin\4.9.20\include\allegro5\platform\almsvc.h	Sat May 29 10:05:07 2010
+++ almsvc.h	Fri Jun 18 21:11:59 2010
@@ -25,6 +25,15 @@
 
 #include "allegro5/platform/alplatf.h"
 
+/* VC10 is the first version to define int64_t and uint64_t */
+#if _MSC_VER < 1600
+#define int64_t      signed __int64
+#define uint64_t     unsigned __int64
+#else
+#include <stdint.h>
+#endif
+
+
 #pragma warning (disable: 4200 4244 4305 4800)
 
 
@@ -79,12 +88,6 @@
 #define INLINE       __inline
 
 #define LONG_LONG    __int64
-
-/* VC10 is the first version to define int64_t and uint64_t */
-#if _MSC_VER < 1600
-#define int64_t      signed __int64
-#define uint64_t     unsigned __int64
-#endif
 
 /* __func__ is C99 */
 #ifndef __func__
