1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

add win2000 hack for newer versions of visual studio

This commit is contained in:
FunkyFr3sh 2023-03-29 02:04:26 +02:00
parent 9568f1f968
commit 5fc842490b

15
src/win2000.asm Normal file
View 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