123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /* $XConsortium: cmcb.h /main/1 1996/04/21 19:21:59 drk $ */
- /*
- * (c) Copyright 1993, 1994 Hewlett-Packard Company
- * (c) Copyright 1993, 1994 International Business Machines Corp.
- * (c) Copyright 1993, 1994 Novell, Inc.
- * (c) Copyright 1993, 1994 Sun Microsystems, Inc.
- */
- #ifndef _CMCB_H
- #define _CMCB_H
- #ifndef SunOS
- #include <rpc/types.h>
- #endif
- #include <rpc/rpc.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "csa.h"
- #include "cm.h"
- /*
- * cal_attr_data - contain names of calendar attributes updated
- */
- struct cmcb_cal_attr_data {
- u_int num_names;
- cms_name *names;
- };
- typedef struct cmcb_cal_attr_data cmcb_cal_attr_data;
- /*
- * add_entry_data - contain information of the deleted entry
- */
- struct cmcb_add_entry_data {
- char *id;
- };
- typedef struct cmcb_add_entry_data cmcb_add_entry_data;
- /*
- * delete_entry_data - contain information of the deleted entry
- */
- struct cmcb_delete_entry_data {
- char *id;
- int scope;
- long time;
- };
- typedef struct cmcb_delete_entry_data cmcb_delete_entry_data;
- /*
- * update_entry_data - contain information of the updated entry
- * if new entry id is not resulted from the update, oldid will be
- * set to a NULL string ("").
- */
- struct cmcb_update_entry_data {
- char *newid;
- char *oldid;
- int scope;
- long time;
- };
- typedef struct cmcb_update_entry_data cmcb_update_entry_data;
- /*
- * update_data - contains the update reason and specific information
- * about the update. No additional data is provided for CSA_CALENDAR_LOGON,
- * CSA_CALENDAR_DELETED, and CSA_CALENDAR_ATTRIBUTE_UPDATED
- */
- struct cmcb_update_data {
- int reason;
- union {
- cmcb_cal_attr_data *cdata; /* data for cal attrs update */
- cmcb_add_entry_data *adata; /* data for CSA_ENTRY_ADDED */
- cmcb_delete_entry_data *ddata; /* data for CSA_ENTRY_DELETED */
- cmcb_update_entry_data *udata; /* data for CSA_ENTRY_UPDATED */
- } data;
- };
- typedef struct cmcb_update_data cmcb_update_data;
- struct cmcb_update_callback_args {
- char *calendar;
- char *user;
- cmcb_update_data data;
- };
- typedef struct cmcb_update_callback_args cmcb_update_callback_args;
- #define AGENTVERS_2 ((unsigned long)(2))
- #if defined(__STDC__) || defined(__cplusplus)
- #define CMCB_UPDATE_CALLBACK ((unsigned long)(1))
- extern void * cmcb_update_callback_2(cmcb_update_callback_args *, CLIENT *);
- extern void * cmcb_update_callback_2_svc(cmcb_update_callback_args *, struct svc_req *);
- extern int agentprog_2_freeresult(SVCXPRT *, xdrproc_t, caddr_t);
- #else /* K&R C */
- #define CMCB_UPDATE_CALLBACK ((unsigned long)(1))
- extern void * cmcb_update_callback_2();
- extern void * cmcb_update_callback_2_svc();
- extern int agentprog_2_freeresult();
- #endif /* K&R C */
- /* the xdr functions */
- #if defined(__STDC__) || defined(__cplusplus)
- extern bool_t xdr_cmcb_cal_attr_data(XDR *, cmcb_cal_attr_data*);
- extern bool_t xdr_cmcb_add_entry_data(XDR *, cmcb_add_entry_data*);
- extern bool_t xdr_cmcb_delete_entry_data(XDR *, cmcb_delete_entry_data*);
- extern bool_t xdr_cmcb_update_entry_data(XDR *, cmcb_update_entry_data*);
- extern bool_t xdr_cmcb_update_data(XDR *, cmcb_update_data*);
- extern bool_t xdr_cmcb_update_callback_args(XDR *, cmcb_update_callback_args*);
- #else /* K&R C */
- extern bool_t xdr_cmcb_cal_attr_data();
- extern bool_t xdr_cmcb_add_entry_data();
- extern bool_t xdr_cmcb_delete_entry_data();
- extern bool_t xdr_cmcb_update_entry_data();
- extern bool_t xdr_cmcb_update_data();
- extern bool_t xdr_cmcb_update_callback_args();
- #endif /* K&R C */
- #ifdef __cplusplus
- }
- #endif
- #endif
|