AlcapDAQ
1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
analyzer
md5-lib
global.h
Go to the documentation of this file.
1
/* GLOBAL.H - RSAREF types and constants
2
*/
3
4
/* PROTOTYPES should be set to one if and only if the compiler supports
5
function argument prototyping.
6
The following makes PROTOTYPES default to 0 if it has not already
7
been defined with C compiler flags.
8
*/
9
10
#ifndef PROTOTYPES
11
#define PROTOTYPES 0
12
#endif
13
14
/* POINTER defines a generic pointer type */
15
typedef
unsigned
char
*
POINTER
;
16
17
/* UINT2 defines a two byte word */
18
typedef
unsigned
short
int
UINT2
;
19
20
/* UINT4 defines a four byte word */
21
typedef
unsigned
long
int
UINT4
;
22
23
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
24
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
25
returns an empty list.
26
*/
27
#if PROTOTYPES
28
#define PROTO_LIST(list) list
29
#else
30
#define PROTO_LIST(list) ()
31
#endif
32
Generated by
1.8.4