File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*********************************************************************************/
2
+ /*
3
+ * Author : Jeong Hyun Gu
4
+ * File name : SysTypedef.h
5
+ */
6
+ /*********************************************************************************/
7
+ #ifndef __SYS_TYPEDEF_H__
8
+ #define __SYS_TYPEDEF_H__
9
+ /*********************************************************************************/
10
+ /**Define**/
11
+
12
+ typedef unsigned char tU8 ;
13
+ typedef signed char tS8 ;
14
+
15
+ typedef unsigned int tU16 ;
16
+ typedef signed int tS16 ;
17
+
18
+ typedef unsigned long tU32 ;
19
+ typedef signed long tS32 ;
20
+
21
+ /*********************************************************************************/
22
+ /**Enum**/
23
+
24
+ /*********************************************************************************/
25
+ /**Struct**/
26
+
27
+ /*********************************************************************************/
28
+ /**Function**/
29
+
30
+ /*********************************************************************************/
31
+ #endif //__SYS_TYPEDEF_H__
You can’t perform that action at this time.
0 commit comments