diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-08-28 22:52:57 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-08-28 22:52:57 +0000 |
commit | e9cae6267fe66a03633426b6283de867e6eb0b65 (patch) | |
tree | 07d32c7b2e3c36150d5fc2746fe9bf20b6ee5dab /include | |
parent | 07bc3636a8a0a1906624d7886c244e83f14b5236 (diff) | |
download | xine-lib-e9cae6267fe66a03633426b6283de867e6eb0b65.tar.gz xine-lib-e9cae6267fe66a03633426b6283de867e6eb0b65.tar.bz2 |
Fixed sed pattern. Reintroduce XINE_PAUSE status. Fixed deadlock in xine_pause. Fixed
many pause/unpause case. Syncing xine.h.tmpl.in with xine_internal.h about
status (Please, don't forget to update the public API header, that made
troubles).
CVS patchset: 513
CVS date: 2001/08/28 22:52:57
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index aa5dba72c..a009b9c89 100644 --- a/include/xine.h.tmpl.in +++ b/include/xine.h.tmpl.in @@ -28,7 +28,7 @@ \endverbatim */ /* - * $Id: xine.h.tmpl.in,v 1.38 2001/08/25 08:50:11 guenter Exp $ + * $Id: xine.h.tmpl.in,v 1.39 2001/08/28 22:52:57 f1rmb Exp $ * */ @@ -100,24 +100,18 @@ extern "C" { * \sa xine_get_status() */ #define XINE_PLAY 1 -/** - * \def XINE_PAUSE - * Pause status. - * \sa xine_get_status() - */ -#define XINE_PAUSE 2 /** * \def XINE_QUIT * Quit status. * \sa xine_get_status() */ -#define XINE_SEEK 3 -/** - * \def XINE_QUIT - * Quit status. +#define XINE_QUIT 2 +/** + * \def XINE_PAUSE + * Pause status. * \sa xine_get_status() */ -#define XINE_QUIT 4 +#define XINE_PAUSE 3 /** @} end of status_group */ |