mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-09 05:11:53 +00:00
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:
parent
5deb6e096d
commit
d6ef01a879
2 changed files with 10 additions and 0 deletions
|
@ -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),
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue