summaryrefslogtreecommitdiff
path: root/plugins/alac/stdint_win.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-08-01 22:27:36 +0200
committerGravatar waker <wakeroid@gmail.com>2012-08-01 22:27:36 +0200
commit002d8c063496bbaa4d781c2812b1f28d28902c23 (patch)
treeb8bb1c1d201f810edccc2045cdfd4c487866abb0 /plugins/alac/stdint_win.h
parent397e22ae9d585b39d8f60a91e273bf1c31d7895e (diff)
added new ALAC plugin
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