00001 /***************************************************************************** 00002 * libs.h: VLC Lua wrapper libraries 00003 ***************************************************************************** 00004 * Copyright (C) 2008 the VideoLAN team 00005 * $Id$ 00006 * 00007 * Authors: Antoine Cellerier <dionoea at videolan tod org> 00008 * 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00022 *****************************************************************************/ 00023 00024 #ifndef VLC_LUA_LIBS_H 00025 #define VLC_LUA_LIBS_H 00026 00027 void luaopen_acl( lua_State * ); 00028 void luaopen_config( lua_State * ); 00029 void luaopen_volume( lua_State * ); 00030 void luaopen_httpd( lua_State * ); 00031 void luaopen_input( lua_State * ); 00032 void luaopen_msg( lua_State * ); 00033 void luaopen_misc( lua_State * ); 00034 void luaopen_net( lua_State * ); 00035 void luaopen_object( lua_State * ); 00036 void luaopen_osd( lua_State * ); 00037 void luaopen_playlist( lua_State * ); 00038 void luaopen_sd( lua_State * ); 00039 void luaopen_stream( lua_State * ); 00040 void luaopen_strings( lua_State * ); 00041 void luaopen_variables( lua_State * ); 00042 void luaopen_video( lua_State * ); 00043 void luaopen_vlm( lua_State * ); 00044 void luaopen_volume( lua_State * ); 00045 00046 #endif
1.5.1