22 lines
578 B
C
22 lines
578 B
C
|
/*
|
||
|
* vim: sw=2 ts=2 expandtab
|
||
|
*
|
||
|
* THE PIZZA-WARE LICENSE" (derived from "THE BEER-WARE LICENCE"):
|
||
|
* <cfr34k@tkolb.de> wrote this file. As long as you retain this notice you can
|
||
|
* do whatever you want with this stuff. If we meet some day, and you think
|
||
|
* this stuff is worth it, you can buy me a pizza in return. - Thomas Kolb
|
||
|
*/
|
||
|
|
||
|
#ifndef LUA_WRAPPERS_H
|
||
|
#define LUA_WRAPPERS_H
|
||
|
|
||
|
void lua_register_funcs(lua_State *L);
|
||
|
|
||
|
/*
|
||
|
static int l_get_energy_in_band(lua_State *L);
|
||
|
static int l_get_fft(lua_State *L);
|
||
|
static int l_get_signal(lua_State *L);
|
||
|
*/
|
||
|
|
||
|
#endif // LUA_WRAPPERS_H
|