Hi,
Just a newbie to PB struggling with simple things...
I just would like to access the functions of a DLL.
Here is my code:
Code: Select all
LibNum = 1
LibHandle = OpenLibrary(LibNum,"TWSLib.dll")
Result = IsLibrary(LibNum)
Result = LibraryID(LibNum)
Result = CountLibraryFunctions(LibNum)
I used a DLL viewer such as "DLL Export Viewer" that displayed nothing at all.
An online tool "https://speedtesting.herokuapp.com/peviewer/" showed some kind of header (valid or not, I dont know) but no functions at all.
Of course the purebasic function "ExamineLibraryFunctions" does not report any functions
Why is that I cannot access the functions of this DLL ? Maybe they are just not there...
Thanking you in advance for any help