diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-03-01 22:08:07 +0100 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2009-03-02 11:29:18 +0100 |
commit | fc2037eab6d1009bce8056abeeb834ec26656e4a (patch) | |
tree | 6fc2c2c941946cb2e35c73599e70ba4ec871e749 /vapi | |
parent | 3ce32d2ec9ee69ea96ff32aecaa8ac889bcf93a9 (diff) | |
download | vala-fc2037eab6d1009bce8056abeeb834ec26656e4a.tar.gz |
posix.vapi: add remaining syslog constants
Signed-off-by: Michael 'Mickey' Lauer <mlauer@vanille-media.de>
Diffstat (limited to 'vapi')
-rw-r--r-- | vapi/posix.vapi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vapi/posix.vapi b/vapi/posix.vapi index 7e25c4d24..9e401ca82 100644 --- a/vapi/posix.vapi +++ b/vapi/posix.vapi @@ -496,6 +496,16 @@ namespace Posix { public void closelog (); [CCode (cheader_filename = "syslog.h")] + public const int LOG_PID; + [CCode (cheader_filename = "syslog.h")] + public const int LOG_CONS; + [CCode (cheader_filename = "syslog.h")] + public const int LOG_ODELAY; + [CCode (cheader_filename = "syslog.h")] + public const int LOG_NDELAY; + [CCode (cheader_filename = "syslog.h")] + public const int LOG_NOWAIT; + [CCode (cheader_filename = "syslog.h")] public const int LOG_EMERG; [CCode (cheader_filename = "syslog.h")] public const int LOG_ALERT; |