115 lines
3.5 KiB
C
115 lines
3.5 KiB
C
/*
|
|
* 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 librararies and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: log.h /main/5 1996/10/03 10:26:46 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 _LOG_H
|
|
#define _LOG_H
|
|
|
|
#include "ansi_c.h"
|
|
#include "cm.h"
|
|
#include "rtable4.h"
|
|
|
|
#define _DtCMS_VERSION1 1
|
|
#define _DtCMS_VERSION4 4
|
|
#define _DtCMS_DEFAULT_LOG "callog"
|
|
#define _DtCMS_DEFAULT_BAK ".calbak"
|
|
#define _DtCMS_DEFAULT_TMP ".caltmp"
|
|
#define _DtCMS_DEFAULT_DEL ".caldel"
|
|
#if defined(CSRG_BASED)
|
|
#define _DtCMS_DEFAULT_DIR "/var/spool/calendar"
|
|
#else
|
|
#define _DtCMS_DEFAULT_DIR "/usr/spool/calendar"
|
|
#endif
|
|
#define _DtCMS_DEFAULT_MODE (S_IRUSR|S_IRGRP|S_IWGRP)
|
|
|
|
typedef enum {
|
|
_DtCmsLogAdd, _DtCmsLogRemove
|
|
} _DtCmsLogOps;
|
|
|
|
extern CSA_return_code _DtCmsAppendAppt4ByFN P((char*, Appt_4*, _DtCmsLogOps));
|
|
extern CSA_return_code _DtCmsAppendAppt4ByFD P((int, Appt_4*, _DtCmsLogOps));
|
|
|
|
extern CSA_return_code _DtCmsAppendCalAttrsByFN P((char *file,
|
|
int size,
|
|
cms_attribute * attrs));
|
|
extern CSA_return_code _DtCmsAppendCalAttrsByFD P((int f,
|
|
int size,
|
|
cms_attribute * attrs));
|
|
|
|
extern CSA_return_code _DtCmsAppendEntryByFN P((char *,
|
|
cms_entry *,
|
|
_DtCmsLogOps));
|
|
extern CSA_return_code _DtCmsAppendEntryByFD P((int,
|
|
cms_entry *,
|
|
_DtCmsLogOps));
|
|
|
|
extern CSA_return_code _DtCmsAppendHTableByFN P((char *file,
|
|
uint size,
|
|
char **names,
|
|
int *types));
|
|
|
|
extern CSA_return_code _DtCmsAppendHTableByFD P((int fd,
|
|
uint size,
|
|
char **names,
|
|
int *types));
|
|
|
|
extern CSA_return_code _DtCmsAppendAccessByFN P((char*,
|
|
int,
|
|
Access_Entry_4 *));
|
|
extern CSA_return_code _DtCmsAppendAccessByFD P((int, int, Access_Entry_4 *));
|
|
|
|
extern CSA_return_code _DtCmsCreateLogV1 P((char*, char *));
|
|
|
|
extern CSA_return_code _DtCmsCreateLogV2 P((char *owner, char *file));
|
|
|
|
extern CSA_return_code _DtCmsWriteVersionString P((char *file, int version));
|
|
|
|
extern int _DtCmsSetFileMode P((char *file,
|
|
uid_t uid,
|
|
gid_t gid,
|
|
mode_t mode,
|
|
boolean_t changeeuid,
|
|
boolean_t printerr));
|
|
|
|
extern CSA_return_code _DtCmsRemoveLog P((char *calendar, char *user));
|
|
|
|
extern char *_DtCmsGetBakFN P((char*));
|
|
extern char *_DtCmsGetLogFN P((char*));
|
|
extern char *_DtCmsGetTmpFN P((char*));
|
|
extern char *_DtCmsGetDelFN P((char*));
|
|
|
|
extern boolean_t _DtCmsPrintAppt4 P((caddr_t data));
|
|
extern void _DtCmsPrintExceptions P((int len, int *exceptions));
|
|
|
|
extern CSA_return_code _DtCmsGetFileSize P((char *calendar, int *size));
|
|
|
|
extern void _DtCmsTruncateFile P((char *calendar, int size));
|
|
|
|
#endif
|