imapext-2007

view src/c-client/c-client.h @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
line source
1 /* ========================================================================
2 * Copyright 1988-2006 University of Washington
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 *
11 * ========================================================================
12 */
14 /*
15 * Program: c-client master include for application programs
16 *
17 * Author: Mark Crispin
18 * Networks and Distributed Computing
19 * Computing & Communications
20 * University of Washington
21 * Administration Building, AG-44
22 * Seattle, WA 98195
23 * Internet: MRC@CAC.Washington.EDU
24 *
25 * Date: 19 May 2000
26 * Last Edited: 6 December 2006
27 */
29 #ifndef __CCLIENT_H /* nobody should include this twice... */
30 #define __CCLIENT_H
32 #ifdef __cplusplus /* help out people who use C++ compilers */
33 extern "C" {
34 /* If you use gcc, you may also have to use -fno-operator-names */
35 #define private cclientPrivate /* private to c-client */
36 #define and cclientAnd /* C99 doesn't realize that ISO 646 is dead */
37 #define or cclientOr
38 #define not cclientNot
39 #endif
41 #include "mail.h" /* primary interfaces */
42 #include "osdep.h" /* OS-dependent routines */
43 #include "rfc822.h" /* RFC822 and MIME routines */
44 #include "smtp.h" /* SMTP sending routines */
45 #include "nntp.h" /* NNTP sending routines */
46 #include "utf8.h" /* Unicode and charset routines */
47 #include "utf8aux.h" /* Unicode auxillary routines */
48 #include "misc.h" /* miscellaneous utility routines */
50 #ifdef __cplusplus /* undo the C++ mischief */
51 #undef private
52 }
53 #endif
55 #endif

UW-IMAP'd extensions by yuuji