浏览代码

Fixed undefined types.

Brucey 1 年之前
父节点
当前提交
1d88b6fd52
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      soloud.mod/dataqueue/dataqueue.h

+ 6 - 0
soloud.mod/dataqueue/dataqueue.h

@@ -24,6 +24,12 @@
 #include <stdlib.h>
 #include <stdlib.h>
 #include <string.h>
 #include <string.h>
 
 
+#if __STDC_VERSION__ >= 199901L
+    #include <stdint.h>
+#else
+    typedef unsigned char uint8_t;
+#endif
+
 #ifdef __cplusplus
 #ifdef __cplusplus
 extern "C" {
 extern "C" {
 #endif
 #endif