mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 02:18:57 +00:00
11 lines
416 B
C
11 lines
416 B
C
#ifndef MOD_LUA_EXTRA
|
|
#define MOD_LUA_EXTRA
|
|
SWITCH_BEGIN_EXTERN_C
|
|
|
|
void mod_lua_conjure_event(lua_State * L, switch_event_t *event, const char *name, int destroy_me);
|
|
void mod_lua_conjure_stream(lua_State * L, switch_stream_handle_t *stream, const char *name, int destroy_me);
|
|
void mod_lua_conjure_session(lua_State * L, switch_core_session_t *session, const char *name, int destroy_me);
|
|
|
|
SWITCH_END_EXTERN_C
|
|
#endif
|