Attached is Patrice Terrier's zTrace 64bit debugging utility dll along with include and library files.
I put the library file in lib/win64 and ztrace.bi in inc/win .
The Dll must be in your path.
James
'=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
'compile as console
'=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
#define unicode
#include once "windows.bi"
#include once "win/ztrace.bi"
zTrace("Hello There")
Dim As long i
For i = 1 to 10
zTrace(Wstr(i))
Next
? " Any key to end"
sleep
'==============================================================================