Hi, i got a problem with the variable DWORD when i use asm
The pathern return the good value, but nostale crash.
I also trie to put value like this :
And same, nostale crash it work only when i use it
Thanks in advance ;)
Code:
DWORD dwSendFunction = PathernSendFunc();
DWORD tmp = PathernNetwork();
__asm
{
MOV EAX, DWORD PTR DS : [tmp]
MOV EAX, DWORD PTR DS : [EAX]
MOV EDX, szPacket
CALL dwSendFunction
}
I also trie to put value like this :
Code:
DWORD dwSendFunction = 0x00518AC4;
DWORD tmp = 0x0069630C;
__asm
{
MOV EAX, DWORD PTR DS : [tmp]
MOV EAX, DWORD PTR DS : [EAX]
MOV EDX, szPacket
CALL dwSendFunction
}
Code:
#define tmp 0x0069630C #define dwSendFunction 0x00518AC4