summaryrefslogtreecommitdiff
path: root/osd.h
diff options
context:
space:
mode:
Diffstat (limited to 'osd.h')
-rw-r--r--osd.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/osd.h b/osd.h
index 18937375..97f1d974 100644
--- a/osd.h
+++ b/osd.h
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: osd.h,v 1.3 2006-10-23 20:09:04 phintuka Exp $
+ * $Id: osd.h,v 1.4 2007-09-01 08:47:04 phintuka Exp $
*
*/
@@ -45,7 +45,7 @@ class cXinelibOsd : public cOsd, public cListObject
friend class cXinelibOsdProvider;
public:
- cXinelibOsd(cXinelibDevice *Device, int x, int y);
+ cXinelibOsd(cXinelibDevice *Device, int x, int y, uint Level = 0);
virtual ~cXinelibOsd();
};
@@ -59,7 +59,11 @@ class cXinelibOsdProvider : public cOsdProvider
cXinelibOsdProvider(cXinelibDevice *Device);
virtual ~cXinelibOsdProvider();
+#if VDRVERSNUM >= 10509
+ virtual cOsd *CreateOsd(int Left, int Top, uint Level);
+#else
virtual cOsd *CreateOsd(int Left, int Top);
+#endif
static void RefreshOsd(void);
};