Hi.
Does someone know how we can retrieve the decorated form of a .DLL/.LIB function name when having both a .h include file from C++ with the non decorated form and the .DLL/.LIB ?
Thanks.
.DLL/.LIB and decorated form functions names.
i think this can help:
http://www.purebasic.fr/english/viewtop ... 313#177313
http://www.purebasic.fr/english/viewtop ... 313#177313
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

nice tool but it does not detect the parameters.
Can you tell me how you did to get the list of commands available in the .LIB file ? With the .DLL commands ?
For example :
Can you tell me how you did to get the list of commands available in the .LIB file ? With the .DLL commands ?
For example :
Should Be :Import "Basic2D.lib"
dbRgbGYA() As "?dbRgbG@@YAHK@Z"
EndImport
Import "Basic2D.lib"
dbRgbG( Param1.l ) As "?dbRgbG@@YAHK@Z"
EndImport
>> nice tool but it does not detect the parameters.
For CDECL you have to read the header for parameters. Detection only with
stdcall decoration available
For CDECL you have to read the header for parameters. Detection only with
stdcall decoration available
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
