summaryrefslogtreecommitdiffstats
path: root/yamaha-mc1n2-audio/include/mctypedef.h
diff options
context:
space:
mode:
Diffstat (limited to 'yamaha-mc1n2-audio/include/mctypedef.h')
-rw-r--r--yamaha-mc1n2-audio/include/mctypedef.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/yamaha-mc1n2-audio/include/mctypedef.h b/yamaha-mc1n2-audio/include/mctypedef.h
new file mode 100644
index 0000000..29c944f
--- /dev/null
+++ b/yamaha-mc1n2-audio/include/mctypedef.h
@@ -0,0 +1,38 @@
+/****************************************************************************
+ *
+ * Copyright(c) 2010 Yamaha Corporation. All rights reserved.
+ *
+ * Module : mctypedef.h
+ *
+ * Description : MC Device Type definitions
+ *
+ * Version : 1.0.0 2010.03.18
+ *
+ ****************************************************************************/
+
+#ifndef _MCTYPEDEF_H_
+#define _MCTYPEDEF_H_
+
+#ifndef NULL
+ #define NULL ((void *)0)
+#endif
+#ifndef UINT8
+ #define UINT8 unsigned char
+#endif
+#ifndef UINT16
+ #define UINT16 unsigned short
+#endif
+#ifndef UINT32
+ #define UINT32 unsigned long
+#endif
+#ifndef SINT8
+ #define SINT8 signed char
+#endif
+#ifndef SINT16
+ #define SINT16 signed short
+#endif
+#ifndef SINT32
+ #define SINT32 signed long
+#endif
+
+#endif /*_MCTYPEDEF_H_*/