From d6ef01a8796e8613e8edb104804d219c0575c574 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Thu, 31 May 2007 16:36:22 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ gst-libs/gst/floatcast/floatcast.h | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 033eacf..01d014c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-05-31 Jan Schmidt + + * gst-libs/gst/floatcast/floatcast.h: + Define inline when needed on win32 builds. Fixes: #441295 + 2007-05-29 Wim Taymans * gst/playback/gstplaybasebin.c: (queue_overrun), diff --git a/gst-libs/gst/floatcast/floatcast.h b/gst-libs/gst/floatcast/floatcast.h index f95dfed..fc26513 100644 --- a/gst-libs/gst/floatcast/floatcast.h +++ b/gst-libs/gst/floatcast/floatcast.h @@ -32,6 +32,11 @@ #include #include +#include /* to make sure inline is defined properly */ + +#if defined (_MSC_VER) && !defined (inline) +#define inline __inline +#endif G_BEGIN_DECLS -- 2.7.4