Fixing win32/linux build snafu.
authorjon <jon@xiph.org>
Mon, 1 May 2000 06:27:54 +0000 (06:27 +0000)
committerjon <jon@xiph.org>
Mon, 1 May 2000 06:27:54 +0000 (06:27 +0000)
svn path=/trunk/vorbis/; revision=354

include/vorbis/os_types.h [new file with mode: 0644]

diff --git a/include/vorbis/os_types.h b/include/vorbis/os_types.h
new file mode 100644 (file)
index 0000000..d4a578e
--- /dev/null
@@ -0,0 +1,27 @@
+#ifndef _OS_TYPES_H
+#define _OS_TYPES_H
+/********************************************************************
+ *                                                                  *
+ * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
+ * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
+ * PLEASE READ THESE TERMS DISTRIBUTING.                            *
+ *                                                                  *
+ * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
+ * by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
+ * http://www.xiph.org/                                             *
+ *                                                                  *
+ ********************************************************************
+
+ function: #ifdef jail to whip a few platforms into the UNIX ideal.
+ last mod: $Id: os_types.h,v 1.1 2000/05/01 06:27:54 jon Exp $
+
+ ********************************************************************/
+
+#ifdef _WIN32
+typedef __int64 int64_t;
+typedef unsigned int u_int32_t;
+#endif
+
+#endif // _OS_TYPES_H
+