masqmail-0.2
diff src/md5/global.h @ 0:08114f7dcc23
this is masqmail-0.2.21 from oliver kurth
author | meillo@marmaro.de |
---|---|
date | Fri, 26 Sep 2008 17:05:23 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/md5/global.h Fri Sep 26 17:05:23 2008 +0200 1.3 @@ -0,0 +1,30 @@ 1.4 +/* GLOBAL.H - RSAREF types and constants 1.5 + */ 1.6 + 1.7 +/* PROTOTYPES should be set to one if and only if the compiler supports 1.8 + function argument prototyping. 1.9 + The following makes PROTOTYPES default to 0 if it has not already 1.10 + been defined with C compiler flags. 1.11 + */ 1.12 +#ifndef PROTOTYPES 1.13 +#define PROTOTYPES 0 1.14 +#endif 1.15 + 1.16 +/* POINTER defines a generic pointer type */ 1.17 +typedef unsigned char *POINTER; 1.18 + 1.19 +/* UINT2 defines a two byte word */ 1.20 +typedef unsigned short int UINT2; 1.21 + 1.22 +/* UINT4 defines a four byte word */ 1.23 +typedef unsigned long int UINT4; 1.24 + 1.25 +/* PROTO_LIST is defined depending on how PROTOTYPES is defined above. 1.26 +If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it 1.27 + returns an empty list. 1.28 + */ 1.29 +#if PROTOTYPES 1.30 +#define PROTO_LIST(list) list 1.31 +#else 1.32 +#define PROTO_LIST(list) () 1.33 +#endif