~ubuntu-branches/ubuntu/karmic/libtinymail/karmic

« back to all changes in this revision

Viewing changes to libtinymail-camel/camel-lite/camel/camel-sasl-ntlm.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-10-12 11:21:12 UTC
  • Revision ID: james.westby@ubuntu.com-20071012112112-fod9fs7yrooxjr7i
Tags: upstream-0.0.2
ImportĀ upstreamĀ versionĀ 0.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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., 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
#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 */