summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjon <jon@xiph.org>2000-05-01 06:27:54 +0000
committerjon <jon@xiph.org>2000-05-01 06:27:54 +0000
commit4f58872cf83797418e82216bc6480ad94880c1be (patch)
tree31d4a99ead2be6b195089f3dededf83d5d813458
parentad01fcb0318303eb84fa96d161ada2d37afca3f3 (diff)
downloadlibvorbis-git-4f58872cf83797418e82216bc6480ad94880c1be.tar.gz
Fixing win32/linux build snafu.
svn path=/trunk/vorbis/; revision=354
-rw-r--r--include/vorbis/os_types.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/vorbis/os_types.h b/include/vorbis/os_types.h
new file mode 100644
index 00000000..d4a578e4
--- /dev/null
+++ b/include/vorbis/os_types.h
@@ -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
+