forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwresolver.h
More file actions
24 lines (18 loc) · 662 Bytes
/
Copy pathwresolver.h
File metadata and controls
24 lines (18 loc) · 662 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
/**
* @file
*
* @brief
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#ifndef ELEKTRA_PLUGIN_WRESOLVER_H
#define ELEKTRA_PLUGIN_WRESOLVER_H
#include <kdbplugin.h>
int elektraWresolverOpen (Plugin * handle, Key * errorKey);
int elektraWresolverClose (Plugin * handle, Key * errorKey);
int elektraWresolverGet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraWresolverSet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraWresolverCommit (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraWresolverError (Plugin * handle, KeySet * ks, Key * parentKey);
Plugin * ELEKTRA_PLUGIN_EXPORT;
#endif