Search found 4 matches

by Holdlang
Fri May 13, 2005 5:11 pm
Forum: Coding Questions
Topic: Fastcall function implemention
Replies: 2
Views: 1056

i need to run the function from an other program with process id.

Or there is a way to calcualte the base address and add the starting address of the function to there?

Holdláng
by Holdlang
Fri May 13, 2005 3:54 pm
Forum: Coding Questions
Topic: Fastcall function implemention
Replies: 2
Views: 1056

Fastcall function implemention

Hi.

I tried to use the Fastcall function from Fasm

Fastcall procid,proces starting address,[param1,param2,....]


it isn't work so i try to implememnt it but i can't found any information how Fastcall is work.

I tried with CreateRemoteThread_ but it can transfer only 1 parameter.

Any ide where ...
by Holdlang
Sat Apr 23, 2005 7:41 am
Forum: Coding Questions
Topic: How to run a process from an other probgram.
Replies: 2
Views: 1153

Maybe the other process function needs some parameters in the stack?


CallFunctionFast($40107D, arg1, arg2...)


Also, make sure that you only need those 24 bytes (or a memory page) of the other process' memory.


It don't need. I call this process from test.exe, which already running ...
by Holdlang
Sat Apr 23, 2005 1:13 am
Forum: Coding Questions
Topic: How to run a process from an other probgram.
Replies: 2
Views: 1153

How to run a process from an other probgram.

How can i run a process from an other program? I have the memory adress where the process is starting, but when i try to CallFuntionFast($adress) it, i get an acces vioalation error.

i try this:

Procedure VirtualProtectExMY(hwnd, adress, size.l)
CallFunction (#PROCESS32LIB, "VirtualProtectEx ...