"Fossies" - the Fresh Open Source Software Archive

Member "evolution-mapi-3.46.1/src/camel/camel-mapi-sasl-krb.h" (2 Dec 2022, 1862 Bytes) of package /linux/misc/evolution-mapi-3.46.1.tar.xz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "camel-mapi-sasl-krb.h" see the Fossies "Dox" file reference documentation.

    1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
    2 /*
    3  * This program is free software; you can redistribute it and/or
    4  * modify it under the terms of the GNU Lesser General Public
    5  * License as published by the Free Software Foundation; either
    6  * version 2 of the License, or (at your option) version 3.
    7  *
    8  * This program is distributed in the hope that it will be useful,
    9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
   10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   11  * Lesser General Public License for more details.
   12  *
   13  * You should have received a copy of the GNU Lesser General Public
   14  * License along with the program; if not, see <http://www.gnu.org/licenses/>
   15  *
   16  */
   17 
   18 #ifndef CAMEL_MAPI_SASL_KRB_H
   19 #define CAMEL_MAPI_SASL_KRB_H
   20 
   21 #include <camel/camel.h>
   22 
   23 /* Standard GObject macros */
   24 #define CAMEL_TYPE_MAPI_SASL_KRB \
   25     (camel_mapi_sasl_krb_get_type ())
   26 #define CAMEL_MAPI_SASL_KRB(obj) \
   27     (G_TYPE_CHECK_INSTANCE_CAST \
   28     ((obj), CAMEL_TYPE_MAPI_SASL_KRB, CamelMapiSaslKrb))
   29 #define CAMEL_MAPI_SASL_KRB_CLASS(cls) \
   30     (G_TYPE_CHECK_CLASS_CAST \
   31     ((cls), CAMEL_TYPE_MAPI_SASL_KRB, CamelMapiSaslKrbClass))
   32 #define CAMEL_IS_MAPI_SASL_KRB(obj) \
   33     (G_TYPE_CHECK_INSTANCE_TYPE \
   34     ((obj), CAMEL_TYPE_MAPI_SASL_KRB))
   35 #define CAMEL_IS_MAPI_SASL_KRB_CLASS(cls) \
   36     (G_TYPE_CHECK_CLASS_TYPE \
   37     ((cls), CAMEL_TYPE_MAPI_SASL_KRB))
   38 #define CAMEL_MAPI_SASL_KRB_GET_CLASS(obj) \
   39     (G_TYPE_INSTANCE_GET_CLASS \
   40     ((obj), CAMEL_TYPE_MAPI_SASL_KRB, CamelMapiSaslKrbClass))
   41 
   42 G_BEGIN_DECLS
   43 
   44 typedef struct _CamelMapiSaslKrb CamelMapiSaslKrb;
   45 typedef struct _CamelMapiSaslKrbClass CamelMapiSaslKrbClass;
   46 
   47 struct _CamelMapiSaslKrb {
   48     CamelSasl parent;
   49 };
   50 
   51 struct _CamelMapiSaslKrbClass {
   52     CamelSaslClass parent_class;
   53 };
   54 
   55 GType camel_mapi_sasl_krb_get_type (void);
   56 
   57 G_END_DECLS
   58 
   59 #endif /* CAMEL_MAPI_SASL_KRB_H */