diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-21 14:38:29 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-21 14:38:29 +0000 |
commit | 2e73a5e69f0227f15c6049ef805a9b8c20166e2b (patch) | |
tree | a76597e387b3748bb06290e7980e432711d72670 /src/post/goom/ifs.h | |
parent | 5ef0b5f10d0ee154a8add83c7c19d8557898226f (diff) | |
download | xine-lib-2e73a5e69f0227f15c6049ef805a9b8c20166e2b.tar.gz xine-lib-2e73a5e69f0227f15c6049ef805a9b8c20166e2b.tar.bz2 |
new goom2k4-dev18 includes almost all of my warning fixes
(the goom team is quite fast in applying my patches :) )
some files are still slightly patched from the release version, but I will
get this sorted out so we will soon use a completely unmodified version
of goom
it compiles almost warningless now (the remaining warnings are introduced by
lex/yacc and I plan to simply ignore them)
the Makefile.am distclean-hack is also obsolete now, since the offending
files have been renamed
CVS patchset: 6828
CVS date: 2004/07/21 14:38:29
Diffstat (limited to 'src/post/goom/ifs.h')
-rw-r--r-- | src/post/goom/ifs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/goom/ifs.h b/src/post/goom/ifs.h index 909838bd3..fab042668 100644 --- a/src/post/goom/ifs.h +++ b/src/post/goom/ifs.h @@ -10,7 +10,7 @@ #include "goom_plugin_info.h" #include "goom_visual_fx.h" -VisualFX ifs_visualfx_create(); +VisualFX ifs_visualfx_create(void); /* init ifs for a (width)x(height) output. * / void init_ifs (PluginInfo *goomInfo, int width, int height); @@ -20,7 +20,7 @@ void init_ifs (PluginInfo *goomInfo, int width, int height); void ifs_update (PluginInfo *goomInfo, Pixel * buffer, Pixel * back, int width, int height, int increment); / * free all ifs's data. * / -void release_ifs (); +void release_ifs (void); */ |