Files
Alexander Hartmann 24f9d1987c updates fatfs lib to a newer version, modified start.s and stub.ld files
to fix a sd usage problem, added support to read the config file from a
folder called arm9loaderhax added support for creating the log file in
this folder, added some more debug output
2016-02-26 01:46:23 +01:00

34 lines
673 B
C

/*-------------------------------------------*/
/* Integer type definitions for FatFs module */
/*-------------------------------------------*/
#ifndef _FF_INTEGER
#define _FF_INTEGER
#ifdef _WIN32 /* FatFs development platform */
#include <windows.h>
#include <tchar.h>
#else /* Embedded platform */
/* 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 16 bit or 32 bit */
typedef int INT;
typedef unsigned int UINT;
/* These types MUST be 32 bit */
typedef long LONG;
typedef unsigned long DWORD;
#endif
#endif