Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1.     char* szTXDFile = "C:\\dev\\txd\\LOADSCS.txd";
  2.     DWORD dwFunc = 0x7ECEF0; // _rwStreamOpen
  3.     //DWORD wtflol= 0x5B38A6;
  4.     _asm
  5.     {
  6.         mov     eax, [esp+szTXDFile]
  7.         push    esi
  8.         push    edi
  9.         push    eax             //; data
  10.         push    1               //; accessType
  11.         push    2               //; type
  12.         xor     edi, edi
  13.         call    dwFunc
  14.         mov     esi, eax
  15.         add     esp, 0Ch
  16.         test    esi, esi
  17.      //   jz      wtflol
  18.  
  19.  
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement