diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-15 16:04:15 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-15 16:04:15 +0000 |
commit | 7bef2dc92ac37e8ab09570d4fb13584afd0c0bf2 (patch) | |
tree | 398f8e22ed559e8fe0573e7d6ece21064a2d6925 | |
parent | 476fe5ac29967b51356105af9a5b36f06f4dd9de (diff) | |
download | xine-lib-7bef2dc92ac37e8ab09570d4fb13584afd0c0bf2.tar.gz xine-lib-7bef2dc92ac37e8ab09570d4fb13584afd0c0bf2.tar.bz2 |
for XINE_GUI_SEND_VIDEOWIN_VISIBLE, data is type int, not int*
(at least it has always been used like that)
CVS patchset: 3539
CVS date: 2002/12/15 16:04:15
-rw-r--r-- | include/xine.h.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 851c901e2..d1f99e0fd 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.45 2002/12/14 18:34:57 esnel Exp $ + * $Id: xine.h.in,v 1.46 2002/12/15 16:04:15 mroi Exp $ * * public xine-lib (libxine) interface and documentation * @@ -792,13 +792,17 @@ typedef struct { /* xevent *data */ #define XINE_GUI_SEND_COMPLETION_EVENT 1 -/* Drawable has changed */ + +/* Drawable data */ #define XINE_GUI_SEND_DRAWABLE_CHANGED 2 + /* xevent *data */ #define XINE_GUI_SEND_EXPOSE_EVENT 3 + /* x11_rectangle_t *data */ #define XINE_GUI_SEND_TRANSLATE_GUI_TO_VIDEO 4 -/* int *data */ + +/* int data */ #define XINE_GUI_SEND_VIDEOWIN_VISIBLE 5 /* *data contains chosen visual, select a new one or change it to NULL |