diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-16 22:15:11 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-16 22:15:11 +0000 |
commit | ae4d95894f7fe74e452e29ed13ddcac663ba95a6 (patch) | |
tree | 2f4cdc879ecb13e2204f459a371c96f1e195f0ba | |
parent | 3684eb1cfcef4eb8fda92373d51527d5e19268cb (diff) | |
download | xine-lib-ae4d95894f7fe74e452e29ed13ddcac663ba95a6.tar.gz xine-lib-ae4d95894f7fe74e452e29ed13ddcac663ba95a6.tar.bz2 |
Avoid explicit void proto.
CVS patchset: 2082
CVS date: 2002/06/16 22:15:11
-rw-r--r-- | include/xine.h.tmpl.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index a8f94a1ac..fa6353cdc 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.99 2002/06/12 12:22:25 f1rmb Exp $ + * $Id: xine.h.tmpl.in,v 1.100 2002/06/16 22:15:11 f1rmb Exp $ * */ @@ -2003,14 +2003,14 @@ char *xine_set_locale(void); * \brief connect to nvtvd server and save current TV and X settings * \param none */ -void xine_tvmode_init (); +void xine_tvmode_init (void); /** * \fn void xine_tvmode_exit (); * \brief restore old TV and X settings and close nvtvd connection * \param none */ -void xine_tvmode_exit (); +void xine_tvmode_exit (void); /** * \fn int xine_tvmode_switch (int type, int width, int height, double fps); |