USB Device - Joystick/Mouse  1.0
types.h
Go to the documentation of this file.
1 #ifndef _TYPES_H
2 #define _TYPES_H
3 
4 typedef unsigned long DWORD;
5 typedef unsigned long ULONG;
6 typedef long LONG;
7 typedef float FLOAT;
8 typedef short SHORT;
9 typedef unsigned short USHORT;
10 typedef char CHAR;
11 typedef unsigned char UCHAR;
12 typedef double DOUBLE;
13 typedef unsigned short WORD;
14 typedef void (*iChar)(unsigned char,void*);
15 #endif
void(* iChar)(unsigned char, void *)
Definition: types.h:14
char CHAR
Definition: types.h:10
short SHORT
Definition: types.h:8
unsigned short USHORT
Definition: types.h:9
long LONG
Definition: types.h:6
float FLOAT
Definition: types.h:7
unsigned char UCHAR
Definition: types.h:11
unsigned long DWORD
Definition: types.h:4
double DOUBLE
Definition: types.h:12
unsigned long ULONG
Definition: types.h:5
unsigned short WORD
Definition: types.h:13