Enable GUI option for 'custom command' connection. Don't g_free strings in
[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 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 General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  */
20
21 #ifndef CAMEL_SASL_NTLM_H
22 #define CAMEL_SASL_NTLM_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #pragma }
27 #endif /* __cplusplus }*/
28
29 #include <camel/camel-sasl.h>
30
31 #define CAMEL_SASL_NTLM_TYPE     (camel_sasl_ntlm_get_type ())
32 #define CAMEL_SASL_NTLM(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_SASL_NTLM_TYPE, CamelSaslNTLM))
33 #define CAMEL_SASL_NTLM_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_SASL_NTLM_TYPE, CamelSaslNTLMClass))
34 #define CAMEL_IS_SASL_NTLM(o)    (CAMEL_CHECK_TYPE((o), CAMEL_SASL_NTLM_TYPE))
35
36 typedef struct _CamelSaslNTLM {
37         CamelSasl parent_object;
38
39 } CamelSaslNTLM;
40
41
42 typedef struct _CamelSaslNTLMClass {
43         CamelSaslClass parent_class;
44         
45 } CamelSaslNTLMClass;
46
47
48 /* Standard Camel function */
49 CamelType camel_sasl_ntlm_get_type (void);
50
51 extern CamelServiceAuthType camel_sasl_ntlm_authtype;
52
53 #ifdef __cplusplus
54 }
55 #endif /* __cplusplus */
56
57 #endif /* CAMEL_SASL_NTLM_H */