shared_object routines support: SWI compatibility and more flexibility.
This commit is contained in:
19
C/load_dld.c
19
C/load_dld.c
@@ -40,6 +40,25 @@ Yap_FindExecutable(char *name)
|
||||
}
|
||||
|
||||
|
||||
static 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;
|
||||
}
|
||||
|
||||
/*
|
||||
* LoadForeign(ofiles,libs,proc_name,init_proc) dynamically loads foreign
|
||||
* code files and libraries and locates an initialization routine
|
||||
|
||||
Reference in New Issue
Block a user