forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.h
More file actions
22 lines (18 loc) · 591 Bytes
/
Copy pathlog.h
File metadata and controls
22 lines (18 loc) · 591 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* @file
*
* @brief
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#ifndef ELEKTRA_PLUGIN_SYSLOG_H
#define ELEKTRA_PLUGIN_SYSLOG_H
#include <kdbplugin.h>
#include <syslog.h>
int elektraSyslogOpen (Plugin * handle, Key * parentKey);
int elektraSyslogClose (Plugin * handle, Key * parentKey);
int elektraSyslogGet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraSyslogSet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraSyslogError (Plugin * handle, KeySet * returned, Key * parentKey);
Plugin * ELEKTRA_PLUGIN_EXPORT;
#endif