Browse CVS Repository
Contents of /xoonips/AL/md5/global.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Mon Mar 14 06:13:44 2005 UTC
(19 years, 1 month ago)
by tani
Branch: MAIN
CVS Tags: AL_PORTING, MergePnt_20051116, REL20051226, XOONIPS_RC1, REL20060323, tag20060615, tag20070307current, tag20061115, MergePnt_20051220, tag20061130, merge_to_20060605, tag20070307, REL20060213, RELENG_2_0_0a_RELEASE, RELEASE_1_0_0, RELEASE_1_0_1, tag20060622, merge_to_20060411, HEAD
Branch point for: XOONIPS_STABLE_32, XOONIPS_STABLE, XOONIPS_STABLE_3, XOONIPS_STABLE_2
File MIME type: text/x-chdr
initial version
| 1 |
#ifndef GLOBAL_H |
| 2 |
#define GLOBAL_H |
| 3 |
|
| 4 |
/* GLOBAL.H - RSAREF types and constants |
| 5 |
*/ |
| 6 |
|
| 7 |
/* PROTOTYPES should be set to one if and only if the compiler supports |
| 8 |
function argument prototyping. |
| 9 |
The following makes PROTOTYPES default to 0 if it has not already |
| 10 |
been defined with C compiler flags. |
| 11 |
*/ |
| 12 |
#ifndef PROTOTYPES |
| 13 |
#define PROTOTYPES 0 |
| 14 |
#endif |
| 15 |
|
| 16 |
/* POINTER defines a generic pointer type */ |
| 17 |
typedef unsigned char *POINTER; |
| 18 |
|
| 19 |
/* UINT2 defines a two byte word */ |
| 20 |
typedef unsigned short int UINT2; |
| 21 |
|
| 22 |
/* UINT4 defines a four byte word */ |
| 23 |
typedef unsigned long int UINT4; |
| 24 |
|
| 25 |
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above. |
| 26 |
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it |
| 27 |
returns an empty list. |
| 28 |
*/ |
| 29 |
#if PROTOTYPES |
| 30 |
#define PROTO_LIST(list) list |
| 31 |
#else |
| 32 |
#define PROTO_LIST(list) () |
| 33 |
#endif |
| 34 |
|
| 35 |
#endif |
| |