Re: EuGTK4.12.0 Released - with improved WINDOWS support!
- Posted by irv Sep 18, 2016
- 1702 views
Solved!
Look at your PATH. Mine had C:/Program Files/Gtk-Runtime and GTK3-Runtime Win64, Plus a bunch of other needless stuff. I removed the ref. to these along with the other non-used stuff. I think open_dll uses the paths to find stuff, since with these set up, open_dll doesn't need or want a full path. Just the dll name.
Next, install gtk-runtime-3.18.exe. It installs in C:/Program Files/GTK3-Runtime Win64. (or 32, ymmv) The installer updates thr path correctly. Seems to start faster without all the bogus paths.
Then, you obtain your list of dlls by
LIBS = dir("C:/Program Files/GTK3-Runtime Win64/bin/*.dll") LIBS = vslice(LIBS,1) for i = 1 to length(LIBS) do x = open_dll(LIBS[i]) ...