the do / gr-peach-opencv-project

Fork of gr-peach-opencv-project by the do

Committer:
thedo
Date:
Thu Jun 29 11:00:41 2017 +0000
Revision:
166:3a9487d57a5c
This is Opencv 3.1 project on GR-PEACH board

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thedo 166:3a9487d57a5c 1 /*-------------------------------------------*/
thedo 166:3a9487d57a5c 2 /* Integer type definitions for FatFs module */
thedo 166:3a9487d57a5c 3 /*-------------------------------------------*/
thedo 166:3a9487d57a5c 4
thedo 166:3a9487d57a5c 5 #ifndef _FF_INTEGER
thedo 166:3a9487d57a5c 6 #define _FF_INTEGER
thedo 166:3a9487d57a5c 7
thedo 166:3a9487d57a5c 8 #ifdef _WIN32 /* Development platform */
thedo 166:3a9487d57a5c 9
thedo 166:3a9487d57a5c 10 #include <windows.h>
thedo 166:3a9487d57a5c 11 #include <tchar.h>
thedo 166:3a9487d57a5c 12
thedo 166:3a9487d57a5c 13 #else /* Embedded platform */
thedo 166:3a9487d57a5c 14
thedo 166:3a9487d57a5c 15 /* This type MUST be 8-bit */
thedo 166:3a9487d57a5c 16 typedef unsigned char BYTE;
thedo 166:3a9487d57a5c 17
thedo 166:3a9487d57a5c 18 /* These types MUST be 16-bit */
thedo 166:3a9487d57a5c 19 typedef short SHORT;
thedo 166:3a9487d57a5c 20 typedef unsigned short WORD;
thedo 166:3a9487d57a5c 21 typedef unsigned short WCHAR;
thedo 166:3a9487d57a5c 22
thedo 166:3a9487d57a5c 23 /* These types MUST be 16-bit or 32-bit */
thedo 166:3a9487d57a5c 24 typedef int INT;
thedo 166:3a9487d57a5c 25 typedef unsigned int UINT;
thedo 166:3a9487d57a5c 26
thedo 166:3a9487d57a5c 27 /* These types MUST be 32-bit */
thedo 166:3a9487d57a5c 28 typedef long LONG;
thedo 166:3a9487d57a5c 29 typedef unsigned long DWORD;
thedo 166:3a9487d57a5c 30
thedo 166:3a9487d57a5c 31 #endif
thedo 166:3a9487d57a5c 32
thedo 166:3a9487d57a5c 33 #endif
thedo 166:3a9487d57a5c 34