gst-libs/gst/floatcast/floatcast.h: Define inline when needed on win32 builds. Fixes: #441295

Original commit message from CVS:
* gst-libs/gst/floatcast/floatcast.h:
Define inline when needed on win32 builds. Fixes: #441295
This commit is contained in:
Jan Schmidt 2007-05-31 16:36:22 +00:00
parent 5deb6e096d
commit d6ef01a879
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2007-05-31 Jan Schmidt <thaytan@mad.scientist.com>
* gst-libs/gst/floatcast/floatcast.h:
Define inline when needed on win32 builds. Fixes: #441295
2007-05-29 Wim Taymans <wim@fluendo.com>
* gst/playback/gstplaybasebin.c: (queue_overrun),

View file

@ -32,6 +32,11 @@
#include <string.h>
#include <glib/gtypes.h>
#include <glib/gutils.h> /* to make sure inline is defined properly */
#if defined (_MSC_VER) && !defined (inline)
#define inline __inline
#endif
G_BEGIN_DECLS