forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlua.hpp
More file actions
23 lines (18 loc) · 613 Bytes
/
lua.hpp
File metadata and controls
23 lines (18 loc) · 613 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @file
*
* @brief
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#ifndef ELEKTRA_PLUGIN_LUA_H
extern "C" {
#include <kdbplugin.h>
int elektraLuaOpen (ckdb::Plugin * handle, ckdb::Key * errorKey);
int elektraLuaClose (ckdb::Plugin * handle, ckdb::Key * errorKey);
int elektraLuaGet (ckdb::Plugin * handle, ckdb::KeySet * ks, ckdb::Key * parentKey);
int elektraLuaSet (ckdb::Plugin * handle, ckdb::KeySet * ks, ckdb::Key * parentKey);
int elektraLuaError (ckdb::Plugin * handle, ckdb::KeySet * ks, ckdb::Key * parentKey);
ckdb::Plugin * ELEKTRA_PLUGIN_EXPORT;
}
#endif