"Fossies" - the Fresh Open Source Software Archive

Member "evolution-mapi-3.46.1/src/calendar/e-cal-backend-mapi.h" (2 Dec 2022, 1985 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 "e-cal-backend-mapi.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  * Authors:
   18  *    Suman Manjunath <msuman@novell.com>
   19  *
   20  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
   21  *
   22  */
   23 
   24 #ifndef E_CAL_BACKEND_MAPI_H
   25 #define E_CAL_BACKEND_MAPI_H
   26 
   27 #include <glib.h>
   28 
   29 #include <libedata-cal/libedata-cal.h>
   30 
   31 G_BEGIN_DECLS
   32 
   33 #define E_TYPE_CAL_BACKEND_MAPI            (e_cal_backend_mapi_get_type ())
   34 #define E_CAL_BACKEND_MAPI(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_CAL_BACKEND_MAPI, ECalBackendMAPI))
   35 #define E_CAL_BACKEND_MAPI_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_CAL_BACKEND_MAPI,  ECalBackendMAPIClass))
   36 #define E_IS_CAL_BACKEND_MAPI(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CAL_BACKEND_MAPI))
   37 #define E_IS_CAL_BACKEND_MAPI_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_CAL_BACKEND_MAPI))
   38 
   39 typedef struct _ECalBackendMAPI        ECalBackendMAPI;
   40 typedef struct _ECalBackendMAPIClass   ECalBackendMAPIClass;
   41 typedef struct _ECalBackendMAPIPrivate ECalBackendMAPIPrivate;
   42 
   43 struct _ECalBackendMAPI {
   44     ECalMetaBackend parent_object;
   45 
   46     /* Private data */
   47     ECalBackendMAPIPrivate *priv;
   48 };
   49 
   50 struct _ECalBackendMAPIClass {
   51     ECalMetaBackendClass parent_class;
   52 };
   53 
   54 GType   e_cal_backend_mapi_get_type(void);
   55 
   56 G_END_DECLS
   57 
   58 #endif /* E_CAL_BACKEND_MAPI_H */