add win2000 hack for newer versions of visual studio
This commit is contained in:
parent
9568f1f968
commit
5fc842490b
1 changed files with 15 additions and 0 deletions
15
src/win2000.asm
Normal file
15
src/win2000.asm
Normal file
|
@ -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
|
Loading…
Reference in a new issue