shared_object routines support: SWI compatibility and more flexibility.

This commit is contained in:
Vítor Santos Costa
2010-06-17 00:29:01 +01:00
parent c7b5cc235e
commit 6e67a84ab0
11 changed files with 332 additions and 2 deletions

View File

@@ -44,6 +44,26 @@ LoadForeign(StringList ofiles, StringList libs,
return LOAD_FAILLED;
}
void *
Yap_LoadForeignFile(char *file, int flags)
{
/* not implemented */
return NULL;
}
int
Yap_CallForeignFile(void *handle, char *f)
{
return FALSE;
}
int
Yap_CloseForeignFile(void *handle)
{
return -1;
}
Int
Yap_LoadForeign(StringList ofiles, StringList libs,
char *proc_name, YapInitProc *init_proc)