You can also use dependency
walker to see if the function was truly exported.
Suppose if you've defined your function in this manner,
void funcy(int, int)
GetExternalModuleAddress would return a pointer to the function to you. So your function pointer should be defined like
void (*myfuncypointer)(int,int);
once myfuncypointer gets a value, you can just invoke it like a normal function
myfuncypointer(int, int)
Check out the fp help for GetExternalModuleAddr for more info.
Hope this helps
Bilal Durrani
NI
Bilal Durrani
NI