- removed menu code temporarily

This commit is contained in:
lordjaxom 2005-04-24 16:19:14 +00:00
parent 183de0e401
commit e2d58e6c2c
2 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
# $Id: Makefile,v 1.4 2005/02/11 16:44:14 lordjaxom Exp $
# $Id: Makefile,v 1.5 2005/04/24 16:19:14 lordjaxom Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@ -52,7 +52,7 @@ COMMONOBJS = common.o i18n.o \
CLIENTOBJS = $(PLUGIN)-client.o \
\
client/socket.o client/device.o client/setup.o client/menu.o \
client/socket.o client/device.o client/setup.o \
client/remote.o client/assembler.o client/filter.o

View File

@ -3,13 +3,13 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: streamdev-client.c,v 1.1 2004/12/30 22:43:59 lordjaxom Exp $
* $Id: streamdev-client.c,v 1.2 2005/04/24 16:19:44 lordjaxom Exp $
*/
#include "streamdev-client.h"
#include "client/device.h"
#include "client/setup.h"
#include "client/menu.h"
//#include "client/menu.h"
#include "i18n.h"
const char *cPluginStreamdevClient::DESCRIPTION = "VTP Streaming Client";
@ -39,11 +39,13 @@ void cPluginStreamdevClient::Housekeeping(void) {
}
const char *cPluginStreamdevClient::MainMenuEntry(void) {
return StreamdevClientSetup.StartClient ? tr("Streaming Control") : NULL;
return NULL;
//return StreamdevClientSetup.StartClient ? tr("Streaming Control") : NULL;
}
cOsdObject *cPluginStreamdevClient::MainMenuAction(void) {
return StreamdevClientSetup.StartClient ? new cStreamdevMenu : NULL;
return NULL;
//return StreamdevClientSetup.StartClient ? new cStreamdevMenu : NULL;
}
cMenuSetupPage *cPluginStreamdevClient::SetupMenu(void) {