Re: EuGTK4.12.0 Released - with improved WINDOWS support!
- Posted by katsmeow Sep 18, 2016
- 1734 views
I made a few changes,
with trace include dll.e include std/os.e atom x x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libgailutil-3-0.dll") if x = 0 then puts(1,"Error libgailutil-3-0\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libgdkglext-3.0-0.dll") if x = 0 then puts(1,"Error libgdkglext-3.0-0\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libgthread-2.0-0.dll") if x = 0 then puts(1,"Error libgthread-2.0-0\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libgtkglext-3.0-0.dll") if x = 0 then puts(1,"Error libgtkglext-3.0-0\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libgtksourceview-3.0-1.dll") if x = 0 then puts(1,"Error libgtksourceview-3.0-1\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libiconv-2.dll") if x = 0 then puts(1,"Error libiconv-2\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libjpeg-62.dll") if x = 0 then puts(1,"Error libjpeg-62\n") end if sleep(1) x = open_dll("C:\\Program Files\\Gtk-Runtime\\bin\\libpng16-16.dll") if x = 0 then puts(1,"Error libpng16-16\n") end if trace(1) x=x
And it prints out
Error libgdkglext-3.0-0 Error libgtkglext-3.0-0 Error libgtksourceview-3.0-1