Hi,
I have a process where the name of a function is in a file text. I Read this file and i whould like to call a function associated with a Execute=[] parameter.
Is it possible ?
Printable View
Hi,
I have a process where the name of a function is in a file text. I Read this file and i whould like to call a function associated with a Execute=[] parameter.
Is it possible ?
You can call these functions using GetProcAddress API:
http://msdn.microsoft.com/en-us/libr...44(VS.85).aspx
Of course it's possible. You have to maintain a name-to-function map (of any kind you're good with) in your code... well, that's it. :)