diff --git a/src/win2000.asm b/src/win2000.asm new file mode 100644 index 0000000..5995502 --- /dev/null +++ b/src/win2000.asm @@ -0,0 +1,15 @@ +.model flat + +.data +__imp__EncodePointer@4 dd dummy +__imp__DecodePointer@4 dd dummy +EXTERNDEF __imp__EncodePointer@4 : DWORD +EXTERNDEF __imp__DecodePointer@4 : DWORD + +.code +dummy proc +mov eax, [esp+4] +ret 4 +dummy endp + +end