its now running!!!!
Search found 9 matches
- Mon Jun 09, 2008 4:08 pm
- Forum: Coding Questions
- Topic: need help asm to pb
- Replies: 4
- Views: 2015
- Fri Jun 06, 2008 5:34 pm
- Forum: Coding Questions
- Topic: how to call a function with only the
- Replies: 3
- Views: 1022
- Fri Jun 06, 2008 4:37 pm
- Forum: Coding Questions
- Topic: how to call a function with only the
- Replies: 3
- Views: 1022
how to call a function with only the
how to call a function with only the address of it?
lets say my function address
FunctionAddress.l = $00000001
How can I call this?
lets say my function address
FunctionAddress.l = $00000001
How can I call this?
- Fri Jun 06, 2008 11:05 am
- Forum: Coding Questions
- Topic: need help asm to pb
- Replies: 4
- Views: 2015
- Fri Jun 06, 2008 11:01 am
- Forum: Tricks 'n' Tips
- Topic: API hooking
- Replies: 26
- Views: 14787
- Fri Jun 06, 2008 7:42 am
- Forum: Coding Questions
- Topic: need help asm to pb
- Replies: 4
- Views: 2015
need help asm to pb
Anyone could help me my pb translation is not working right
Your help would be much appreciated
org asm code
ProcInstallHook proc uses ebx edi esi hookProc:DWORD, targetProc:DWORD, patchLen:DWORD
mov esi, patchLen
mov edi, targetProc
mov eax, esi
add eax, 5
invoke Alloc, eax
mov ebx, eax ...
Your help would be much appreciated
org asm code
ProcInstallHook proc uses ebx edi esi hookProc:DWORD, targetProc:DWORD, patchLen:DWORD
mov esi, patchLen
mov edi, targetProc
mov eax, esi
add eax, 5
invoke Alloc, eax
mov ebx, eax ...
- Fri Jun 06, 2008 3:22 am
- Forum: Coding Questions
- Topic: Direct C/C++ to PB Translation Help
- Replies: 4
- Views: 1421
- Thu Jun 05, 2008 7:30 pm
- Forum: Coding Questions
- Topic: Direct C/C++ to PB Translation Help
- Replies: 4
- Views: 1421
- Thu Jun 05, 2008 6:54 pm
- Forum: Coding Questions
- Topic: Direct C/C++ to PB Translation Help
- Replies: 4
- Views: 1421
Direct C/C++ to PB Translation Help
I've tried to manually translate this function from C/C++ to PB but the procedure fails :(
Heres the Original C/C++ Code:
// This function "replaces" a function with another function
// So, for example, if you do this:
// OriginalWSASendProc = (MyWSASendProc) HookImportedFunction ...
Heres the Original C/C++ Code:
// This function "replaces" a function with another function
// So, for example, if you do this:
// OriginalWSASendProc = (MyWSASendProc) HookImportedFunction ...