diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-05-03 14:54:21 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-05-03 14:54:21 +0100 |
commit | 2c6ee93fbbfc2ff754be551038eee79047d9c988 (patch) | |
tree | 38e51e424cc2394195f2b91abeacd495dc0c3199 | |
parent | 577b73605f3ce2cd6b45e59967f24d195d1e92bf (diff) | |
download | xine-lib-2c6ee93fbbfc2ff754be551038eee79047d9c988.tar.gz xine-lib-2c6ee93fbbfc2ff754be551038eee79047d9c988.tar.bz2 |
Mark some removed-in-1.2 typedefs as deprecated.
-rw-r--r-- | include/xine.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 8d1822441..ad79bebc6 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -89,8 +89,8 @@ typedef struct xine_video_port_s xine_video_port_t; #ifndef XINE_DISABLE_DEPRECATED_FEATURES /* convenience types: simple player UIs might want to call ports drivers */ -typedef xine_audio_port_t xine_ao_driver_t; -typedef xine_video_port_t xine_vo_driver_t; +typedef xine_audio_port_t xine_ao_driver_t XINE_DEPRECATED; +typedef xine_video_port_t xine_vo_driver_t XINE_DEPRECATED; #endif @@ -2192,7 +2192,7 @@ void xine_osd_free (xine_osd_t *self) XINE_PROTECTED; typedef enum { XINE_TVSYSTEM_PAL = 0, XINE_TVSYSTEM_NTSC -} xine_tvsystem; +} xine_tvsystem XINE_DEPRECATED; /* connect to nvtvd server and save current TV and X settings */ int xine_tvmode_init (xine_t *self) XINE_PROTECTED XINE_DEPRECATED; |