Node:CPL Notes, Next:Calling C from Prolog, Up:Mixing C and Prolog
SP_PATH is used as a
shorthand
for the SICStus Prolog installation directory,
whose default location for SICStus 3.12.0 is
/usr/local/lib/sicstus-3.12.0) for UNIX and
C:\Program Files\SICStus Prolog 3.12.0 for Windows.
See Environment Variables.
Windows note: Explicit use of theSP_PATHvariable is discouraged, since Windows applications can find out for themselves where they were started from.SP_PATHis only used if the directory wheresprt312.dllis loaded from does not containsp312(a directory),sprt.sav, orspre.sav. IfSP_PATHis used, SICStus expects it to be set such that%SP_PATH%\bincontainssprt.savorspre.sav. See Runtime Systems on Target Machines.
<sicstus/sicstus.h>.
The value of many support functions is a return code, which is one of
SP_SUCCESS for success, SP_FAILURE for failure,
SP_ERROR if an error condition occurred, or if an uncaught
exception was raised during a call from C to Prolog.
If the value is SP_ERROR, the macro SP_errno will return a
value describing the error condition:
int SP_errno
The function SP_error_message() returns a pointer to the diagnostic
message corresponding to a specified error number:
char *SP_error_message(int errno)
If a foreign function is specified to return an encoded string, an
exception will be raised if, on return to Prolog, the actual string is
malformed (is not a valid sequence of UTF-8 encoded characters). The
exception raised is
representation_error(...,...,mis_encoded_string).