[MPlayer-cvslog] r31906 - trunk/loader/win32.c
alexc
subversion at mplayerhq.hu
Mon Aug 2 20:28:42 CEST 2010
Author: alexc
Date: Mon Aug 2 20:28:42 2010
New Revision: 31906
Log:
Add msvcr100 support to the win32 loader.
This is required for the Expression Screen Codec binary decoder.
Modified:
trunk/loader/win32.c
Modified: trunk/loader/win32.c
==============================================================================
--- trunk/loader/win32.c Mon Aug 2 19:39:20 2010 (r31905)
+++ trunk/loader/win32.c Mon Aug 2 20:28:42 2010 (r31906)
@@ -5585,6 +5585,15 @@ static const struct exports exp_msvcp60[
{"??1_Lockit at std@@QAE at XZ", -1, exp_1Lockit_dummy}
};
+static const struct exports exp_msvcr100[]={
+ FF(memcpy, -1)
+ FF(memset, -1)
+ FF(_initterm_e, -1)
+ FF(_initterm, -1)
+ {"??2 at YAPAXI@Z", -1, expnew},
+ {"??3 at YAXPAX@Z", -1, expdelete}
+};
+
#define LL(X) \
{#X".dll", sizeof(exp_##X)/sizeof(struct exports), exp_##X},
@@ -5613,6 +5622,7 @@ static const struct libs libraries[]={
LL(shlwapi)
LL(msvcr80)
LL(msvcp60)
+ LL(msvcr100)
};
static WIN_BOOL WINAPI ext_stubs(void)
More information about the MPlayer-cvslog
mailing list