gunminiho Expert Cheater
Reputation: 0
Joined: 15 Dec 2008 Posts: 144 Location: peru
|
Posted: Sun May 16, 2010 8:55 pm Post subject: [delphi] WPE |
|
|
hey Dark Byte i was wondering, if im not wrong CE 5.6 can send packets? well if im not wrong where is that coded?? i mean in your source code? cause i searched a lot and can't find it :S
i hope it is in delphi ( since im coding in delphi )
another question
i have a huge problem i neeed to pass B ( which is a array of DWORDs ) to a asm procedure
end i have this procedure:
| Code: | procedure ItemFilterASM; assembler;stdcall;
begin
asm
@ItemFilter:
PUSH EBX
PUSH ESI
XOR EBX,EBX
MOV ESI,DWORD PTR[B] // <--- B is array of DWORDs
@ifreject:
CMP EAX,[ESI]
JE @skip
CMP [ESI],EBX
JE @end
ADD ESI,$4
JMP @ifreject
@skip:
MOV EAX,$00
@end:
POP ESI
POP EBX
MOV DWORD PTR[EDI+$34],EAX
MOV EDI, [EBP-$14]
JMP DWORD PTR[ItemFilterEnd]
end;
end; |
i really believe im doing it wrong since when i see that memory view it doesn't hold my array values? how should i do it?
|
|