]> git.sesse.net Git - vlc/blobdiff - include/int_types.h
* ./src/misc/modules_plugin.h: if symbol foo isn't found in the
[vlc] / include / int_types.h
index 2c24151b98ddc2057aa2d8c33aeea2335ee0aa44..bc5a1a9c4b8077c9577b3902ea461822d0b1c24f 100644 (file)
@@ -2,6 +2,7 @@
  * int_types.h: internal types
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
+ * $Id: int_types.h,v 1.7 2001/05/31 01:37:08 sam Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -27,5 +28,10 @@ typedef unsigned short          u16;
 typedef signed short            s16;
 typedef unsigned int            u32;
 typedef signed int              s32;
+#if defined( _MSC_VER )
+typedef unsigned __int64        u64;
+typedef signed __int64          s64;
+#else
 typedef unsigned long long      u64;
 typedef signed long long        s64;
+#endif