From b591eb0a1886757e521a6d2ffe78bcb149397c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Fri, 26 Dec 2003 18:37:58 +0000 Subject: Win32 mega update: - external ffmpeg (with some patches) built by MINGW works, wow! - cleanups (only one definition file for all plugins) - working release build target Notes to hybrid MINGW/MSVC build: - CVS version of ffmpeg is compiled by MINGW (small patch for compilation ffmpeg under MINGW, second for disabling flush because it crashes under windows) - libxine + xineui compiled by MSVC, additional patch into header files of ffmpeg is needed - export all data with '__declspec(dllimport)' CVS patchset: 5951 CVS date: 2003/12/26 18:37:58 --- src/xine-utils/xineutils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xine-utils') diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index 01923051a..d70542506 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.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: xineutils.h,v 1.76 2003/12/21 14:14:39 mroi Exp $ + * $Id: xineutils.h,v 1.77 2003/12/26 18:37:59 valtri Exp $ * */ #ifndef XINEUTILS_H @@ -589,7 +589,7 @@ typedef union { but causes compiler warning with libxineutils */ #ifdef _MSC_VER -void __declspec( dllimport ) *(* xine_fast_memcpy)(void *to, const void *from, size_t len); +__declspec( dllimport ) extern void *(* xine_fast_memcpy)(void *to, const void *from, size_t len); #else extern void *(* xine_fast_memcpy)(void *to, const void *from, size_t len); #endif -- cgit v1.2.3