summaryrefslogtreecommitdiffstats
path: root/libdvdread-embedded/msvc/include/os_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'libdvdread-embedded/msvc/include/os_types.h')
-rw-r--r--libdvdread-embedded/msvc/include/os_types.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libdvdread-embedded/msvc/include/os_types.h b/libdvdread-embedded/msvc/include/os_types.h
new file mode 100644
index 0000000..eb0f24f
--- /dev/null
+++ b/libdvdread-embedded/msvc/include/os_types.h
@@ -0,0 +1,24 @@
+#ifndef __OS_TYPES_H__
+#define __OS_TYPES_H__
+/*
+ * win32 types
+ * 04 Sept 2001 - Chris Wolf create.
+ */
+
+typedef unsigned char uint_8;
+typedef unsigned short uint_16;
+typedef unsigned int uint_32;
+typedef signed char sint_32;
+typedef signed short sint_16;
+typedef signed int sint_8;
+
+#define snprintf _snprintf
+#define M_PI 3.14159265358979323846 /* pi */
+#define DLLENTRY __declspec(dllexport)
+
+ // Temporarily hardcode this location
+#define AO_PLUGIN_PATH "c:\\Program Files\\Common Files\\Xiphophorus\\ao"
+
+#define SHARED_LIB_EXT ".dll"
+
+#endif /* __OS_TYPES_H__ */