public
Description: Lua-RPC for Lua 5.1.x
Homepage:
Clone URL: git://github.com/jsnyder/luarpc.git
luarpc / config.h
100644 23 lines (15 sloc) 0.438 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __LUARPC_CONFIG_H__
#define __LUARPC_CONFIG_H__
 
#define BUILD_LUARPC
#define LUARPC_STANDALONE
 
/*#define LUARPC_ENABLE_SOCKET*/
/* #define LUARPC_ENABLE_FIFO -- not implemented!!! */
#define LUARPC_ENABLE_SERIAL
 
/* signed and unsigned 8, 16 and 32 bit types */
 
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;
 
 
#endif