Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / camel-sasl-ntlm.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Copyright 2002 Ximian, Inc. (www.ximian.com)
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU Lesser General Public
7  * License as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20
21 #ifndef CAMEL_SASL_NTLM_H
22 #define CAMEL_SASL_NTLM_H
23
24 #include <camel/camel-sasl.h>
25
26 #define CAMEL_SASL_NTLM_TYPE     (camel_sasl_ntlm_get_type ())
27 #define CAMEL_SASL_NTLM(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_SASL_NTLM_TYPE, CamelSaslNTLM))
28 #define CAMEL_SASL_NTLM_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_SASL_NTLM_TYPE, CamelSaslNTLMClass))
29 #define CAMEL_IS_SASL_NTLM(o)    (CAMEL_CHECK_TYPE((o), CAMEL_SASL_NTLM_TYPE))
30
31 G_BEGIN_DECLS
32
33 typedef struct _CamelSaslNTLM {
34         CamelSasl parent_object;
35
36 } CamelSaslNTLM;
37
38
39 typedef struct _CamelSaslNTLMClass {
40         CamelSaslClass parent_class;
41         
42 } CamelSaslNTLMClass;
43
44
45 /* Standard Camel function */
46 CamelType camel_sasl_ntlm_get_type (void);
47
48 extern CamelServiceAuthType camel_sasl_ntlm_authtype;
49
50 G_END_DECLS
51
52 #endif /* CAMEL_SASL_NTLM_H */