repo.or.cz
/
luanode.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update [ci skip]
[luanode.git]
/
luanode_api.h
blob
06d4a01ef6bceefb55f41378528a0ca2e9377b0d
1
#ifndef _LUANODE_API_H
2
#define _LUANODE_API_H
3
4
typedef
struct
LuaNodeModuleInterface
{
5
int
interface_version
;
6
7
bool
(*
luanode_post
) (
const char
*
module_name
,
const char
*
function_name
,
int
key
,
void
*
userdata
);
8
}
LuaNodeModuleInterface
;
9
10
#endif