Sha256: 0c49e2f92a7c5fb439661ede8e45d675d2dc4ab0dfc28cc3e600eb358fc2164a

Contents?: true

Size: 795 Bytes

Versions: 35

Compression:

Stored size: 795 Bytes

Contents

/* GLOBAL.H - RSAREF types and constants
*/

/* PROTOTYPES should be set to one if and only if the compiler supports
   function argument prototyping.
   The following makes PROTOTYPES default to 0 if it has not already
   been defined with C compiler flags.
   */
#ifndef PROTOTYPES
#define PROTOTYPES 0
#endif

#include "config.h"

/* POINTER defines a generic pointer type */
typedef unsigned char *POINTER;

/* UINT2 defines a two byte word */
typedef uint16_t UINT2;

/* UINT4 defines a four byte word */
typedef uint32_t UINT4;

/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
   If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
   returns an empty list.
   */
#if PROTOTYPES
#define PROTO_LIST(list) list
#else
#define PROTO_LIST(list) ()
#endif

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
mt-libcouchbase-1.4.03 ext/libcouchbase/src/vbucket/rfc1321/global.h
mt-libcouchbase-1.4.02 ext/libcouchbase/src/vbucket/rfc1321/global.h
mt-libcouchbase-1.4.01 ext/libcouchbase/src/vbucket/rfc1321/global.h
mt-libcouchbase-1.4.0 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.3.2 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.3.0 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.8 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.7 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.6 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.5 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.4 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.3 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.2 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.1 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.2.0 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.1.1 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.1.0 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.0.4 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.0.3 ext/libcouchbase/src/vbucket/rfc1321/global.h
libcouchbase-1.0.2 ext/libcouchbase/src/vbucket/rfc1321/global.h