forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitresolver.h
More file actions
25 lines (19 loc) · 711 Bytes
/
gitresolver.h
File metadata and controls
25 lines (19 loc) · 711 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 gitresolver plugin
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#ifndef ELEKTRA_PLUGIN_GITRESOLVER_H
#define ELEKTRA_PLUGIN_GITRESOLVER_H
#include <kdbplugin.h>
int elektraGitresolverOpen (Plugin * handle, Key * errorKey);
int elektraGitresolverClose (Plugin * handle, Key * errorKey);
int elektraGitresolverGet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraGitresolverSet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraGitresolverError (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraGitresolverCommit (Plugin * handle, KeySet * ks, Key * parentKey);
Plugin * ELEKTRA_PLUGIN_EXPORT;
#endif