Browse Source

for some reason ppremake needs these files to be here

rdb 12 years ago
parent
commit
41d851db86
2 changed files with 17 additions and 0 deletions
  1. 16 0
      dtool/src/parser-inc/os_types.h
  2. 1 0
      dtool/src/parser-inc/vorbisfile.h

+ 16 - 0
dtool/src/parser-inc/os_types.h

@@ -0,0 +1,16 @@
+#ifndef _OS_TYPES_H
+#define _OS_TYPES_H
+
+#define _ogg_malloc malloc
+#define _ogg_calloc calloc
+#define _ogg_realloc realloc
+#define _ogg_free free
+
+typedef signed short ogg_int16_t;
+typedef unsigned short ogg_uint16_t;
+typedef signed int ogg_int32_t;
+typedef unsigned int ogg_uint32_t;
+typedef signed long long ogg_int64_t;
+typedef unsigned long long ogg_uint64_t;
+
+#endif

+ 1 - 0
dtool/src/parser-inc/vorbisfile.h

@@ -0,0 +1 @@
+struct OggVorbis_File;