Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: [books] Pre-release of Chapter 5 of Rebol - A programmer's guide

From: petr::krenzelok::seznam::cz at: 4-Jul-2008 8:49

Tim Johnson napsal(a):
> On Thursday 03 July 2008, Sunanda wrote: > >> Tim: >> >>> Could you explain further. Do I take this to mean that /core >>> has access to shared libraries? Or are you referring to rebol3? >>> >> I think he;s referring to Core 2.7.6, released in March: >> <http://www.rebol.net/upnews/0026.html> >> > OK. Downloaded and untarred but: > Not much help in either the binary itself or the URL for > how to use. > On my machine: > >>> res: load/library %/usr/lib/libmysqlclient.so.15 >>> > == ELF > >>> probe res >>> > ELF > == ELF >
the same under windows and with different library: ->> do %sqlite.r Script: "SQLite driver" (20-Feb-2007) ->> type? sqlite/*lib == library! ->> probe sqlite/*lib library You have to look at docs, find your C API for your particular library and create routine wrappers .... -pekr-