0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

loader: Add msvcr100 support to the win32 loader

This is required for the Expression Screen Codec binary decoder.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31906 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alexc 2010-08-02 18:28:42 +00:00 committed by Uoti Urpala
parent 04ce30b2fd
commit 9e218d2df1

View File

@ -5585,6 +5585,15 @@ static const struct exports exp_msvcp60[]={
{"??1_Lockit@std@@QAE@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@YAPAXI@Z", -1, expnew},
{"??3@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)