Hello,
Today I find a bit time to test a new combination: newlisp.dll UTF8 with purebasic 5.62
Since latest purebasic versions are unicode compiler, it was interesting to use newlisp.dll UTF8 there.
Importing the dll is simple:
OpenLibrary(0,"newlisp_utf8.dll")
The call function can look like this:
sourcestr.s = GetGadgetText(#Gadget_Form1_String3)
*newlispstr = AllocateMemory(StringByteLength(sourcestr) + SizeOf(Character))
PokeS(*newlispstr, sourcestr, Len(sourcestr),#PB_UTF8)
retstr.s = PeekS(CallFunction(0,"newlispEvalStr",*newlispstr),-1,#PB_UTF8)
FreeMemory(*newlispstr)
SetGadgetText(#Gadget_Form1_Editor5, retstr)
At the end you can (not needed, but cleaner)
CloseLibrary(0)
Regards
Hello,
After a advice from Fred(Author of purebasic) I now here an improved code:
Init:
OpenLibrary(0,"newlisp_utf8.dll")
; Define your function pointer, with auto utf8 conversion (and cleaning)
Prototype newlispEvalStrProto(input.p-utf8)
newlispEvalStr.newlispEvalStrProto = GetFunction(0, "newlispEvalStr")
Call in the main Event Loop in my GUI:
SetGadgetText(#Gadget_Form1_Editor5, PeekS(newlispEvalStr(GetGadgetText(#Gadget_Form1_String3)),-1,#PB_UTF8))
At the end you can (not needed, but cleaner)
CloseLibrary(0)
Regards
Hi HPW,
thank you for your example, I will try it later and give you feedback since I use Purebasic too (I'm not that active there, but who knows, thats's something interesting here!)
Gruß, Gregor
Hello,
With the help of various purebasic fellows from the purebasic community,
I managed to get callbacks to work from newlisp-dll.
Here is a complete purebasic source with the newlisp utf8 dll (32 bit):
//http://www.hpwsoft.de/anmeldung/html1/newLISP/hpwNewLisp_PB.zip
Screenshot:

(//%3C/s%3E%3CURL%20url=%22http://www.hpwsoft.de/anmeldung/html1/newLISP/hpwNewLisp_PB.png%22%3E%3CLINK_TEXT%20text=%22http://www.hpwsoft.de/anmeldung/html1/n%20...%20isp_PB.png%22%3Ehttp://www.hpwsoft.de/anmeldung/html1/newLISP/hpwNewLisp_PB.png%3C/LINK_TEXT%3E%3C/URL%3E%3Ce%3E)
By the way: One of the reasons why purebasic is a good companion to newlisp is the size of the final exe which is here 49 KB.
For 64 bit purebasic user the 64 bit Dll must be downloaded from newlisp.org.
Regards
Hans-Peter
Hello,
Updated the demo with 2 more callbacks with Integer and Double parameters.
Again here is the complete purebasic source with the newlisp utf8 dll (32 bit):
This time also the compiled demo with 52224 Bytes.
http://www.hpwsoft.de/anmeldung/html1/newLISP/hpwNewLisp_PB.zip
Regards