mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-01 09:51:22 +02:00
CLuaInstance: Move video functions in separate class
- No api changes, code only
This commit is contained in:
51
src/gui/lua/lua_video.h
Normal file
51
src/gui/lua/lua_video.h
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* lua video functions
|
||||
*
|
||||
* (C) 2014 [CST ]Focus
|
||||
* (C) 2014-2015 M. Liebmann (micha-bbg)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef _LUAVIDEO_H
|
||||
#define _LUAVIDEO_H
|
||||
|
||||
/*
|
||||
class CLuaVideo
|
||||
{
|
||||
public:
|
||||
CLuaVideo() {};
|
||||
~CLuaVideo() {};
|
||||
};
|
||||
*/
|
||||
|
||||
class CLuaInstVideo
|
||||
{
|
||||
static CLuaData *CheckData(lua_State *L, int narg);
|
||||
public:
|
||||
CLuaInstVideo() {};
|
||||
~CLuaInstVideo() {};
|
||||
static CLuaInstVideo* getInstance();
|
||||
// static void LuaVideoRegister(lua_State *L);
|
||||
|
||||
static int setBlank_old(lua_State *L);
|
||||
static int ShowPicture_old(lua_State *L);
|
||||
static int StopPicture_old(lua_State *L);
|
||||
static int PlayFile_old(lua_State *L);
|
||||
static int zapitStopPlayBack_old(lua_State *L);
|
||||
static int channelRezap_old(lua_State *L);
|
||||
|
||||
// private:
|
||||
};
|
||||
|
||||
#endif //_LUAVIDEO_H
|
Reference in New Issue
Block a user