forked from lewurm/mini
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinteger.h
More file actions
Latest commit
31 lines (24 loc) · 780 Bytes
/
Copy pathinteger.h
File metadata and controls
31 lines (24 loc) · 780 Bytes
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
/*-------------------------------------------*/
/* Integer type definitions for FatFs module */
/*-------------------------------------------*/
#ifndef_INTEGER
/* These types must be 16-bit, 32-bit or larger integer */
typedefintINT;
typedefunsigned intUINT;
/* These types must be 8-bit integer */
typedefsigned charCHAR;
typedefunsigned charUCHAR;
typedefunsigned charBYTE;
/* These types must be 16-bit integer */
typedefshortSHORT;
typedefunsigned shortUSHORT;
typedefunsigned shortWORD;
typedefunsigned shortWCHAR;
/* These types must be 32-bit integer */
typedeflongLONG;
typedefunsigned longULONG;
typedefunsigned longDWORD;
/* Boolean type */
typedefenum { FALSE=0, TRUE } BOOL;
#define_INTEGER
#endif