changeset 29725:d375073c4447

Implement dummy EncodePointer/DecodePointer functions needed for e.g. lagarith.dll
author reimar
date Sat, 10 Oct 2009 09:27:22 +0000
parents ad425a6980c0
children 0d05687720a9
files loader/win32.c
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/loader/win32.c	Thu Oct 08 17:44:23 2009 +0000
+++ b/loader/win32.c	Sat Oct 10 09:27:22 2009 +0000
@@ -4836,6 +4836,16 @@
     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 @@
     {"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)