public
Description: Lua-RPC for Lua 5.1.x
Homepage:
Clone URL: git://github.com/jsnyder/luarpc.git
luarpc / luarpc.h
100644 16 lines (11 sloc) 0.577 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*****************************************************************************
* Lua-RPC library, Copyright (C) 2001 Russell L. Smith. All rights reserved. *
* Email: russ@q12.org Web: www.q12.org *
* For documentation, see http://www.q12.org/lua. For the license agreement, *
* see the file LICENSE that comes with this distribution. *
*****************************************************************************/
 
#ifndef __LUAPRC_H__
#define __LUAPRC_H__
 
#include "lua.h"
 
void luaopen_rpc (lua_State *L);
 
#endif