summaryrefslogtreecommitdiffstats
path: root/K2LABI/Common/k2l-type.h
diff options
context:
space:
mode:
Diffstat (limited to 'K2LABI/Common/k2l-type.h')
-rw-r--r--K2LABI/Common/k2l-type.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/K2LABI/Common/k2l-type.h b/K2LABI/Common/k2l-type.h
new file mode 100644
index 0000000..4d95be9
--- /dev/null
+++ b/K2LABI/Common/k2l-type.h
@@ -0,0 +1,26 @@
+//
+// k2l-type.h
+// AmbientLight
+//
+// Created by Thorsten Kummermehr on 10/9/13.
+//
+//
+#ifndef AmbientLight_k2l_type_h
+#define AmbientLight_k2l_type_h
+
+
+#include <stdint.h>
+#include <stddef.h>
+
+#define K2LABI_API
+
+typedef uint8_t BYTE;
+typedef uint16_t WORD;
+typedef uint32_t DWORD;
+typedef uint32_t HRESULT;
+
+typedef char TCHAR;
+
+typedef void* HANDLE;
+
+#endif