File: lualcm_lcm.h

package info (click to toggle)
lcm 1.3.1%2Brepack1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,848 kB
  • sloc: ansic: 16,186; java: 6,843; cs: 2,266; cpp: 1,594; python: 989; makefile: 352; xml: 252; sh: 59
file content (26 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (5)
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
26
#ifndef TPRK77_LCM_LCM_H
#define TPRK77_LCM_LCM_H

// Needed for luaL_checkint which is deprecated in Lua 5.3
#define LUA_COMPAT_APIINTCASTS

#ifdef __cplusplus
extern "C" {
#endif
#include "lua.h"
#include "lauxlib.h"
#ifdef __cplusplus
}
#endif

/**
 * @page LCM object related functions.
 *
 * @see ll_lcm_makemetatable
 * @see ll_lcm_register_new
 */

void ll_lcm_makemetatable(lua_State *);
void ll_lcm_register_new(lua_State *);

#endif