diff options
author | schmirl <schmirl> | 2008-04-07 14:27:27 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2008-04-07 14:27:27 +0000 |
commit | f51d6eb2dfb128a29db34b05d9b92a9633dd5b29 (patch) | |
tree | 328eeeb9761d13aede43a94598af3ffaedc9e202 /streamdev-client.c | |
parent | 71cc16a1eb1774f9f20f8eed03b17af3e8691edc (diff) | |
download | vdr-plugin-streamdev-f51d6eb2dfb128a29db34b05d9b92a9633dd5b29.tar.gz vdr-plugin-streamdev-f51d6eb2dfb128a29db34b05d9b92a9633dd5b29.tar.bz2 |
- removed legacy code for pre VDR 1.4
- dropped patches for pre VDR 1.4
Diffstat (limited to 'streamdev-client.c')
-rw-r--r-- | streamdev-client.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/streamdev-client.c b/streamdev-client.c index fe6a21f..7d4034a 100644 --- a/streamdev-client.c +++ b/streamdev-client.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: streamdev-client.c,v 1.2 2005/04/24 16:19:44 lordjaxom Exp $ + * $Id: streamdev-client.c,v 1.3 2008/04/07 14:27:27 schmirl Exp $ */ #include "streamdev-client.h" @@ -12,6 +12,10 @@ //#include "client/menu.h" #include "i18n.h" +#if VDRVERSNUM < 10400 +#error "VDR-1.4.0 or greater is required" +#endif + const char *cPluginStreamdevClient::DESCRIPTION = "VTP Streaming Client"; cPluginStreamdevClient::cPluginStreamdevClient(void) { |