1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/* $Cambridge: hermes/src/prayer/shared/common.h,v 1.16 2012/07/01 10:24:41 dpc22 Exp $ */
/************************************************
* Prayer - a Webmail Interface *
************************************************/
/* Copyright (c) University of Cambridge 2000 - 2008 */
/* See the file NOTICE for conditions of use and distribution. */
/* Useful constants used by several different files */
/* Prayer Version numbers for frontend and backend code */
#define VERSION_PRAYER "1.3.5"
/* Common character sequences */
#define CR "\015"
#define LF "\012"
#define CRLF "\015\012"
/* Sort mode shared by prefs and msgmap */
typedef enum { ARRIVAL, DATE, FROM, SUBJECT, TO, CC, SIZE,
REFERENCES, ORDEREDSUBJECT
} SORTMODE;
|