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
846 B
C
Raw Normal View History

/*-------------------------------------------*/
/* Integer type definitions for FatFs module */
/*-------------------------------------------*/
#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;
2016-04-18 18:04:04 +02:00
/* This type MUST be 64-bit (Remove this for C89 compatibility) */
typedef unsigned long long QWORD;
#endif
#endif