From 571d21a33a46707deabc80769b4c8cb7d0f7c161 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 7 Jan 2008 17:26:49 +0000 Subject: - MsgSetProperty() implemented - defined a property class - implemented deserializer (needs some more work) --- syslogd.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'syslogd.h') diff --git a/syslogd.h b/syslogd.h index 3eb002fc..67f10daf 100644 --- a/syslogd.h +++ b/syslogd.h @@ -49,7 +49,6 @@ #define ADDDATE 0x004 /* add a date to the message */ #define MARK 0x008 /* this message is a mark */ -void dbgprintf(char *, ...) __attribute__((format(printf, 1, 2))); void logerror(char *type); void logerrorSz(char *type, char *errMsg); void logerrorInt(char *type, int iErr); @@ -68,7 +67,7 @@ int getSubString(uchar **ppSrc, char *pDst, size_t DstSize, char cSep); /* the following prototypes should go away once we have an input * module interface -- rgerhards, 2007-12-12 */ -void logmsgInternal(int pri, char *msg, int flags); +rsRetVal logmsgInternal(int pri, char *msg, int flags); void logmsg(int pri, msg_t *pMsg, int flags); extern int glblHadMemShortage; /* indicates if we had memory shortage some time during the run */ extern char LocalHostName[]; -- cgit