From e2d58e6c2c159460be257a61f87ddad6fbd2c0ba Mon Sep 17 00:00:00 2001 From: lordjaxom Date: Sun, 24 Apr 2005 16:19:14 +0000 Subject: [PATCH] - removed menu code temporarily --- Makefile | 4 ++-- streamdev-client.c | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f682736..682eb39 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/streamdev-client.c b/streamdev-client.c index 093a166..fe6a21f 100644 --- a/streamdev-client.c +++ b/streamdev-client.c @@ -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) {