diff options
-rw-r--r-- | ffnetdev.c | 4 | ||||
-rw-r--r-- | netosd.c | 2 | ||||
-rw-r--r-- | netosd.h | 4 | ||||
-rw-r--r-- | remote.c | 2 | ||||
-rw-r--r-- | remote.h | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -33,10 +33,10 @@ cNetOSDProvider::cNetOSDProvider(void) } -cOsd * cNetOSDProvider::CreateOsd(int Left, int Top) +cOsd * cNetOSDProvider::CreateOsd(int Left, int Top, uint Level) { - osd = new cNetOSD(Left, Top); + osd = new cNetOSD(Left, Top, Level); return osd; } @@ -9,7 +9,7 @@ #include "osdworker.h" ////////////////////////////////////////////////////////////////////////////////////////////////// -cNetOSD::cNetOSD(int Left, int Top) : cOsd(Left, Top) +cNetOSD::cNetOSD(int XOfs, int YOfs, uint Level) : cOsd(XOfs, YOfs, Level) { #ifdef DEBUG fprintf(stderr,"[ffnetdev] NetOSD: Constructor cNetOSD.\n"); @@ -17,7 +17,7 @@ private: bool truecolor; protected: public: - cNetOSD(int XOfs, int XOfs); + cNetOSD(int XOfs, int YOfs, uint Level = OSD_LEVEL_DEFAULT); virtual ~cNetOSD(); virtual eOsdError CanHandleAreas(const tArea *Areas, int NumAreas); virtual void Flush(void); @@ -31,7 +31,7 @@ private: cNetOSD **NetOSD; public: cNetOSDProvider(void); - virtual cOsd *CreateOsd(int Left, int Top); + virtual cOsd *CreateOsd(int Left, int Top, uint Level); }; #endif //_NETOSD__H @@ -27,7 +27,7 @@ bool cMyRemote::Initialize(void) return true; } -bool cMyRemote::Put(uint64 Code, bool Repeat, bool Release) +bool cMyRemote::Put(uint64_t Code, bool Repeat, bool Release) { #if VDRVERSNUM >= 10347 if ((cRemote::IsLearning()) && (Release)) @@ -17,7 +17,7 @@ public: cMyRemote(const char *Name); virtual bool Initialize(void); virtual bool Ready(void); - virtual bool Put(uint64 Code, bool Repeat, bool Release); + virtual bool Put(uint64_t Code, bool Repeat, bool Release); }; |