| View previous topic :: View next topic |
| Author |
Message |
doggy4s
Joined: 22 Jan 2007 Posts: 16
|
Posted: Sat Apr 04, 2009 3:07 pm Post subject: DLL using exported function |
|
|
Hi
Hope my subject is correct (terms)
I am checking if it is possible and how to use a (exported) dll function.
checking with PE exlorer ( or alike) I found results like the examples below :
Undecorated C++ Function:
public: void __thiscall TheDllfilename::someCtrl::DoSomething(void)
Undecorated C++ Function:
public: int __thiscall TheDllfilename::someCtrl::IsDoingsomething(void)
Undecorated C++ Function:
public: void __thiscall TheDllfilename::someCtrl::DoSomething(int)
I understand the TheDllfilename and the DoSOmething being the function (?) but confused by the inbetween
anyway based on the above information to transform that to a AHK DLL call ?
Thanks much |
|
| Back to top |
|
 |
doggy4s
Joined: 22 Jan 2007 Posts: 16
|
Posted: Wed Apr 08, 2009 7:07 am Post subject: |
|
|
No hints ?
Would this info help ?
DLL filename = TheDllfilename.dll
function extracted from with depedency walker
?IsDoingsomething@someCtrl@TheDllfilename@@QAEHXZ
( or undecorated C++ function)
int TheDllfilename::someCtrl::IsDoingsomething(void) |
|
| Back to top |
|
 |
|