-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.h
More file actions
32 lines (29 loc) · 1.3 KB
/
types.h
File metadata and controls
32 lines (29 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/******************************************************************************/
/* */
/* Project : FAT12/16 File System */
/* File : types.h */
/* Author : Kyoungmoon Sun(msg2me@msn.com) */
/* Company : Dankook Univ. Embedded System Lab. */
/* Notes : type defines */
/* Date : 2008/7/2 */
/* */
/******************************************************************************/
#ifndef _TYPES_H_
#define _TYPES_H_
#define BYTE unsigned char
#define WORD unsigned short
#define DWORD unsigned int
#define QWORD unsigned long long int
#define SHORT short
#define USHORT unsigned short
#define INT int
#define UINT unsigned int
#define INT8 char
#define UINT8 unsigned char
#define INT16 SHORT
#define UINT16 USHORT
#define INT32 INT
#define UINT32 UINT
#define INT64 long long int
#define UINT64 unsigned INT64
#endif