diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-27 13:40:51 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-27 13:40:51 +0000 |
commit | 0fe3cd97bd25afac12288ab70ccace97da570662 (patch) | |
tree | 2e720093c3bd7b3270c3e2d475454343e01e6a81 | |
parent | 24c044fe4ec41ea372c83048685a48f658cec078 (diff) | |
download | xine-lib-0fe3cd97bd25afac12288ab70ccace97da570662.tar.gz xine-lib-0fe3cd97bd25afac12288ab70ccace97da570662.tar.bz2 |
these functions actually have (void) parameters, not (), which is equal to (...)
CVS patchset: 5105
CVS date: 2003/06/27 13:40:51
-rw-r--r-- | src/xine-engine/configfile.h | 4 | ||||
-rw-r--r-- | src/xine-engine/video_out.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/configfile.h b/src/xine-engine/configfile.h index 0d6546b90..6889a8987 100644 --- a/src/xine-engine/configfile.h +++ b/src/xine-engine/configfile.h @@ -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: configfile.h,v 1.22 2003/05/20 13:50:56 mroi Exp $ + * $Id: configfile.h,v 1.23 2003/06/27 13:40:51 mroi Exp $ * * config file management * @@ -192,7 +192,7 @@ struct config_values_s { /* * allocate and init a new xine config object */ -config_values_t *xine_config_init (); +config_values_t *xine_config_init (void); /* * hack: intepret "opt:"-style mrls for config value changes diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 5184413fe..aeccdf01e 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -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: video_out.h,v 1.91 2003/06/11 23:08:55 miguelfreitas Exp $ + * $Id: video_out.h,v 1.92 2003/06/27 13:40:51 mroi Exp $ * * * xine version of video_out.h @@ -441,7 +441,7 @@ struct video_overlay_instance_s { vo_driver_t *output, vo_frame_t *vo_img, int enabled); }; -video_overlay_instance_t *video_overlay_new_instance (); +video_overlay_instance_t *video_overlay_new_instance (void); /* |