summaryrefslogtreecommitdiff
path: root/src/xine-utils/xineutils.h
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2003-12-26 18:37:58 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2003-12-26 18:37:58 +0000
commitb591eb0a1886757e521a6d2ffe78bcb149397c55 (patch)
tree9794f58cf17b965a7e205cfe17663bd52854c580 /src/xine-utils/xineutils.h
parentd52f151b187a050797a0fd4d5f8ca8653fb9c3c6 (diff)
downloadxine-lib-b591eb0a1886757e521a6d2ffe78bcb149397c55.tar.gz
xine-lib-b591eb0a1886757e521a6d2ffe78bcb149397c55.tar.bz2
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
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r--src/xine-utils/xineutils.h4
1 files changed, 2 insertions, 2 deletions
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