imapext-2007

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/c-client/c-client.h	Mon Sep 14 15:17:45 2009 +0900
     1.3 @@ -0,0 +1,55 @@
     1.4 +/* ========================================================================
     1.5 + * Copyright 1988-2006 University of Washington
     1.6 + *
     1.7 + * Licensed under the Apache License, Version 2.0 (the "License");
     1.8 + * you may not use this file except in compliance with the License.
     1.9 + * You may obtain a copy of the License at
    1.10 + *
    1.11 + *     http://www.apache.org/licenses/LICENSE-2.0
    1.12 + *
    1.13 + * 
    1.14 + * ========================================================================
    1.15 + */
    1.16 +
    1.17 +/*
    1.18 + * Program:	c-client master include for application programs
    1.19 + *
    1.20 + * Author:	Mark Crispin
    1.21 + *		Networks and Distributed Computing
    1.22 + *		Computing & Communications
    1.23 + *		University of Washington
    1.24 + *		Administration Building, AG-44
    1.25 + *		Seattle, WA  98195
    1.26 + *		Internet: MRC@CAC.Washington.EDU
    1.27 + *
    1.28 + * Date:	19 May 2000
    1.29 + * Last Edited:	6 December 2006
    1.30 + */
    1.31 +
    1.32 +#ifndef __CCLIENT_H		/* nobody should include this twice... */
    1.33 +#define __CCLIENT_H
    1.34 +
    1.35 +#ifdef __cplusplus		/* help out people who use C++ compilers */
    1.36 +extern "C" {
    1.37 +  /* If you use gcc, you may also have to use -fno-operator-names */
    1.38 +#define private cclientPrivate	/* private to c-client */
    1.39 +#define and cclientAnd		/* C99 doesn't realize that ISO 646 is dead */
    1.40 +#define or cclientOr
    1.41 +#define not cclientNot
    1.42 +#endif
    1.43 +
    1.44 +#include "mail.h"		/* primary interfaces */
    1.45 +#include "osdep.h"		/* OS-dependent routines */
    1.46 +#include "rfc822.h"		/* RFC822 and MIME routines */
    1.47 +#include "smtp.h"		/* SMTP sending routines */
    1.48 +#include "nntp.h"		/* NNTP sending routines */
    1.49 +#include "utf8.h"		/* Unicode and charset routines */
    1.50 +#include "utf8aux.h"		/* Unicode auxillary routines */
    1.51 +#include "misc.h"		/* miscellaneous utility routines */
    1.52 +
    1.53 +#ifdef __cplusplus		/* undo the C++ mischief */
    1.54 +#undef private
    1.55 +}
    1.56 +#endif
    1.57 +
    1.58 +#endif

UW-IMAP'd extensions by yuuji