summaryrefslogtreecommitdiff
path: root/plugins/alac/stdint_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/alac/stdint_win.h')
-rw-r--r--plugins/alac/stdint_win.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/alac/stdint_win.h b/plugins/alac/stdint_win.h
new file mode 100644
index 00000000..a580eb7f
--- /dev/null
+++ b/plugins/alac/stdint_win.h
@@ -0,0 +1,14 @@
+
+#ifndef ALAC_STDINT_WIN_H__
+#define ALAC_STDINT_WIN_H__
+
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed int int32_t;
+typedef signed __int64 int64_t;
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned __int64 uint64_t;
+
+#endif // ALAC_STDINT_WIN_H__ \ No newline at end of file