STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
Eclipse_WS2
STM32F769IDiscovery
Middlewares
Third_Party
FatFs
src
integer.h
Go to the documentation of this file.
1
/*-------------------------------------------*/
2
/* Integer type definitions for FatFs module */
3
/*-------------------------------------------*/
4
5
#ifndef _FF_INTEGER
6
#define _FF_INTEGER
7
8
#ifdef _WIN32
/* FatFs development platform */
9
10
#include <windows.h>
11
#include <tchar.h>
12
13
#else
/* Embedded platform */
14
15
/* This type MUST be 8 bit */
16
typedef
unsigned
char
BYTE
;
17
18
/* These types MUST be 16 bit */
19
typedef
short
SHORT
;
20
typedef
unsigned
short
WORD
;
21
typedef
unsigned
short
WCHAR
;
22
23
/* These types MUST be 16 bit or 32 bit */
24
typedef
int
INT
;
25
typedef
unsigned
int
UINT
;
26
27
/* These types MUST be 32 bit */
28
typedef
long
LONG
;
29
typedef
unsigned
long
DWORD
;
30
31
#endif
32
33
#endif
WORD
unsigned short WORD
Definition:
integer.h:20
WCHAR
unsigned short WCHAR
Definition:
integer.h:21
SHORT
short SHORT
Definition:
integer.h:19
LONG
long LONG
Definition:
integer.h:28
INT
int INT
Definition:
integer.h:24
DWORD
unsigned long DWORD
Definition:
integer.h:29
BYTE
unsigned char BYTE
Definition:
integer.h:16
UINT
unsigned int UINT
Definition:
integer.h:25
Generated by
1.8.11