forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.h
More file actions
25 lines (18 loc) · 660 Bytes
/
Copy pathprocess.h
File metadata and controls
25 lines (18 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* @file
*
* @brief Header for process plugin
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#ifndef ELEKTRA_PLUGIN_PROCESS_H
#define ELEKTRA_PLUGIN_PROCESS_H
#include <kdbplugin.h>
int elektraProcessOpen (Plugin * handle, Key * errorKey);
int elektraProcessClose (Plugin * handle, Key * errorKey);
int elektraProcessGet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraProcessSet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraProcessError (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraProcessCheckConf (Key * errorKey, KeySet * conf);
Plugin * ELEKTRA_PLUGIN_EXPORT;
#endif