This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fatfs/integer.h

39 lines
853 B
C
Raw Normal View History

/*-------------------------------------------*/
/* Integer type definitions for FatFs module */
/*-------------------------------------------*/
2017-08-16 19:37:39 +02:00
#ifndef FF_INTEGER
#define FF_INTEGER
2016-04-18 18:04:04 +02:00
#ifdef _WIN32 /* FatFs development platform */
#include <windows.h>
#include <tchar.h>
2016-04-18 18:04:04 +02:00
typedef unsigned __int64 QWORD;
#else /* Embedded platform */
2016-04-18 18:04:04 +02:00
/* These types MUST be 16-bit or 32-bit */
typedef int INT;
typedef unsigned int UINT;
/* This type MUST be 8-bit */
typedef unsigned char BYTE;
/* These types MUST be 16-bit */
typedef short SHORT;
typedef unsigned short WORD;
typedef unsigned short WCHAR;
/* These types MUST be 32-bit */
typedef long LONG;
typedef unsigned long DWORD;
2017-04-14 17:31:34 +02:00
/* This type MUST be 64-bit (Remove this for ANSI C (C89) compatibility) */
2016-04-18 18:04:04 +02:00
typedef unsigned long long QWORD;
#endif
#endif