mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
Fixed cThread to work under vdr-1.2.6.
This commit is contained in:
parent
77634cfde2
commit
26918d18ce
4
HISTORY
4
HISTORY
@ -4,3 +4,7 @@ VDR Plugin 'femon' Revision History
|
|||||||
2004-02-15: Version 0.0.1
|
2004-02-15: Version 0.0.1
|
||||||
|
|
||||||
- Initial revision.
|
- Initial revision.
|
||||||
|
|
||||||
|
2004-02-23: Version 0.0.1b
|
||||||
|
|
||||||
|
- Fixed cThread to work under vdr-1.2.6.
|
||||||
|
2
femon.h
2
femon.h
@ -4,7 +4,7 @@
|
|||||||
#include <vdr/plugin.h>
|
#include <vdr/plugin.h>
|
||||||
#include "femoncfg.h"
|
#include "femoncfg.h"
|
||||||
|
|
||||||
static const char *VERSION = "0.0.1";
|
static const char *VERSION = "0.0.1b";
|
||||||
static const char *DESCRIPTION = "DVB Signal Quality Monitor (OSD)";
|
static const char *DESCRIPTION = "DVB Signal Quality Monitor (OSD)";
|
||||||
static const char *MAINMENUENTRY = "Signal Quality";
|
static const char *MAINMENUENTRY = "Signal Quality";
|
||||||
|
|
||||||
|
@ -15,7 +15,11 @@
|
|||||||
#define OSDHEIGHT 5
|
#define OSDHEIGHT 5
|
||||||
|
|
||||||
cFemonOsd::cFemonOsd(void)
|
cFemonOsd::cFemonOsd(void)
|
||||||
|
#if VDRVERSNUM >= 10300
|
||||||
:cOsdObject(true), cThread("femon plugin")
|
:cOsdObject(true), cThread("femon plugin")
|
||||||
|
#else
|
||||||
|
:cOsdObject(true), cThread()
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
//printf("cFemonOsd::cFemonOsd()\n");
|
//printf("cFemonOsd::cFemonOsd()\n");
|
||||||
m_Osd = NULL;
|
m_Osd = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user