110 lines
3.3 KiB
C
110 lines
3.3 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 libraries 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 "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"
|
|
#define _DtCMS_DEFAULT_DIR "/var/spool/calendar"
|
|
#define _DtCMS_DEFAULT_MODE (S_IRUSR|S_IRGRP|S_IWGRP)
|
|
|
|
typedef enum {
|
|
_DtCmsLogAdd, _DtCmsLogRemove
|
|
} _DtCmsLogOps;
|
|
|
|
extern CSA_return_code _DtCmsAppendAppt4ByFN(char*, Appt_4*, _DtCmsLogOps);
|
|
extern CSA_return_code _DtCmsAppendAppt4ByFD(int, Appt_4*, _DtCmsLogOps);
|
|
|
|
extern CSA_return_code _DtCmsAppendCalAttrsByFN(char *file,
|
|
int size,
|
|
cms_attribute * attrs);
|
|
extern CSA_return_code _DtCmsAppendCalAttrsByFD(int f,
|
|
int size,
|
|
cms_attribute * attrs);
|
|
|
|
extern CSA_return_code _DtCmsAppendEntryByFN(char *,
|
|
cms_entry *,
|
|
_DtCmsLogOps);
|
|
extern CSA_return_code _DtCmsAppendEntryByFD(int,
|
|
cms_entry *,
|
|
_DtCmsLogOps);
|
|
|
|
extern CSA_return_code _DtCmsAppendHTableByFN(char *file,
|
|
uint size,
|
|
char **names,
|
|
int *types);
|
|
|
|
extern CSA_return_code _DtCmsAppendHTableByFD(int fd,
|
|
uint size,
|
|
char **names,
|
|
int *types);
|
|
|
|
extern CSA_return_code _DtCmsAppendAccessByFN(char*,
|
|
int,
|
|
Access_Entry_4 *);
|
|
extern CSA_return_code _DtCmsAppendAccessByFD(int, int, Access_Entry_4 *);
|
|
|
|
extern CSA_return_code _DtCmsCreateLogV1(char*, char *);
|
|
|
|
extern CSA_return_code _DtCmsCreateLogV2(char *owner, char *file);
|
|
|
|
extern CSA_return_code _DtCmsWriteVersionString(char *file, int version);
|
|
|
|
extern int _DtCmsSetFileMode(char *file,
|
|
uid_t uid,
|
|
gid_t gid,
|
|
mode_t mode,
|
|
boolean_t changeeuid,
|
|
boolean_t printerr);
|
|
|
|
extern CSA_return_code _DtCmsRemoveLog(char *calendar, char *user);
|
|
|
|
extern char *_DtCmsGetBakFN(char*);
|
|
extern char *_DtCmsGetLogFN(char*);
|
|
extern char *_DtCmsGetTmpFN(char*);
|
|
extern char *_DtCmsGetDelFN(char*);
|
|
|
|
extern boolean_t _DtCmsPrintAppt4(caddr_t data);
|
|
extern void _DtCmsPrintExceptions(int len, int *exceptions);
|
|
|
|
extern CSA_return_code _DtCmsGetFileSize(char *calendar, int *size);
|
|
|
|
extern void _DtCmsTruncateFile(char *calendar, int size);
|
|
|
|
#endif
|