source: azure_iot_hub_riscv/trunk/asp_baseplatform/files/ff/integer.h@ 453

Last change on this file since 453 was 453, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 905 bytes
Line 
1/*-------------------------------------------*/
2/* Integer type definitions for FatFs module */
3/*-------------------------------------------*/
4
5#ifndef _INTEGER
6
7#if 0
8#include <windows.h>
9#else
10#include <itron.h>
11
12#if 0 /* ROI DEBUG */
13/* These types must be 16-bit, 32-bit or larger integer */
14typedef int INT;
15typedef unsigned int UINT;
16#endif /* ROI DEBUG */
17
18/* These types must be 8-bit integer */
19typedef signed char CHAR;
20typedef unsigned char UCHAR;
21typedef unsigned char BYTE;
22
23/* These types must be 16-bit integer */
24typedef short SHORT;
25typedef unsigned short USHORT;
26typedef unsigned short WORD;
27typedef unsigned short WCHAR;
28
29/* These types must be 32-bit integer */
30typedef long LONG;
31typedef unsigned long ULONG;
32typedef unsigned long DWORD;
33
34#if 0 /* ROI DEBUG */
35/* Boolean type */
36typedef enum { FALSE = 0, TRUE } BOOL;
37#endif /* ROI DEBUG */
38
39#endif
40
41#define _INTEGER
42#endif
Note: See TracBrowser for help on using the repository browser.