~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to QmakePlugin/md5_global.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-02-10 10:13:06 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100210101306-nzt1b7es8mby1eyi
Tags: 2.2.0.3681+dfsg-0ubuntu1
* New upstream release.
* Refresh patches.
* Adjust Makefile to avoid the execution of uninstall target. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//See internet RFC 1321, "The MD5 Message-Digest Algorithm"
2
 
/* GLOBAL.H - RSAREF types and constants
3
 
 */
4
 
 
5
 
#ifndef _MD5_GLOBAL_H
6
 
#define _MD5_GLOBAL_H
7
 
 
8
 
/* PROTOTYPES should be set to one if and only if the compiler supports
9
 
  function argument prototyping.
10
 
The following makes PROTOTYPES default to 0 if it has not already
11
 
 
12
 
  been defined with C compiler flags.
13
 
 */
14
 
#ifndef PROTOTYPES
15
 
#define PROTOTYPES 1
16
 
#endif
17
 
 
18
 
/* POINTER defines a generic pointer type */
19
 
typedef unsigned char *POINTER;
20
 
 
21
 
/* UINT2 defines a two byte word */
22
 
typedef unsigned short int UINT2;
23
 
 
24
 
/* UINT4 defines a four byte word */
25
 
typedef unsigned long int UINT4;
26
 
 
27
 
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
28
 
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
29
 
  returns an empty list.
30
 
 */
31
 
#if PROTOTYPES
32
 
#define PROTO_LIST(list) list
33
 
#else
34
 
#define PROTO_LIST(list) ()
35
 
#endif
36
 
 
37
 
#endif
38