summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-12-01 10:48:08 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-12-01 10:48:08 +0100
commit816e6847aac13ad51bf7d569b90be5f7fbe5c027 (patch)
tree779f79053d895066de16044c73bff327a9209d4c /menu.h
parent125872e75f48af908bd008037226bbddb62666c1 (diff)
downloadvdr-816e6847aac13ad51bf7d569b90be5f7fbe5c027.tar.gz
vdr-816e6847aac13ad51bf7d569b90be5f7fbe5c027.tar.bz2
Macros in 'keymacros.conf' can now use "@plugin" to directly access the main menu function of a given plugin
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.h b/menu.h
index ae7d0a91..7e7e4d66 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 1.50 2002/11/23 14:51:32 kls Exp $
+ * $Id: menu.h 1.51 2002/11/30 15:55:39 kls Exp $
*/
#ifndef __MENU_H
@@ -21,9 +21,9 @@ private:
time_t lastActivity;
bool replaying;
static cOsdObject *pluginOsdObject;
- void Set(void);
+ void Set(const char *Plugin = NULL);
public:
- cMenuMain(bool Replaying, eOSState State = osUnknown);
+ cMenuMain(bool Replaying, eOSState State = osUnknown, const char *Plugin = NULL);
virtual eOSState ProcessKey(eKeys Key);
static cOsdObject *PluginOsdObject(void);
};