Implement dummy EncodePointer/DecodePointer functions needed for e.g. lagarith.dll

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29767 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-10-10 09:27:22 +00:00
parent 5069d954b0
commit 7199cc3c4d
1 changed files with 12 additions and 0 deletions

View File

@ -4836,6 +4836,16 @@ static int exp_1Lockit_dummy(void)
return 0;
}
static void * WINAPI expEncodePointer(void *p)
{
return p;
}
static void * WINAPI expDecodePointer(void *p)
{
return p;
}
struct exports
{
char name[64];
@ -5011,6 +5021,8 @@ struct exports exp_kernel32[]=
{"LoadLibraryExA", -1, (void*)&LoadLibraryExA},
FF(SetThreadIdealProcessor,-1)
FF(SetProcessAffinityMask, -1)
FF(EncodePointer, -1)
FF(DecodePointer, -1)
UNDEFF(FlsAlloc, -1)
UNDEFF(FlsGetValue, -1)
UNDEFF(FlsSetValue, -1)