5MP Motion Camera  1.1.1.1
A waterproof, low power, battery operated, motion activated, 5 mega-pixel, WiFi camera.
global.h
Go to the documentation of this file.
1 /* GLOBAL.H - RSAREF types and constants */
2 
3 /* PROTOTYPES should be set to one if and only if the compiler
4  * supports function argument prototyping.
5  * The following makes PROTOTYPES default to 0 if it has not already
6  * been defined with C compiler flags.
7  */
8 #ifndef PROTOTYPES
9 #define PROTOTYPES 0
10 #endif
11 
12 /*Modified by MMoore http://mikestechspot.blogspot.com
13 Changed typedefs to be fully compatible w/ Arduino 08/09/2010 */
14 
15 /* POINTER defines a generic pointer type */
16 typedef unsigned char *POINTER;
17 
18 /* UINT2 defines a two byte word */
19 typedef unsigned int UINT2;
20 
21 /* UINT4 defines a four byte word */
22 typedef unsigned long UINT4;
23 
24 /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
25  * If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
26  * returns an empty list.
27  */
28 #if PROTOTYPES
29 #define PROTO_LIST(list) list
30 #else
31 #define PROTO_LIST(list) ()
32 #endif
33 
unsigned long UINT4
Definition: global.h:22
unsigned char * POINTER
Definition: global.h:16
unsigned int UINT2
Definition: global.h:19