[INTERPRETER]

* BUG: Make the interpreter compile when FFI has been disabled.


git-svn-id: svn://localhost/gambas/trunk@4969 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2012-07-19 19:27:28 +00:00
parent a20e032798
commit 186bb8d5e2

View File

@ -782,5 +782,12 @@ void *EXTERN_get_symbol(const char *library, const char *symbol)
return NULL;
}
EXTERN_FUNC_INFO EXTERN_get_function_info(CLASS_EXTERN *ext)
{
EXTERN_FUNC_INFO func_info = { NULL, NULL };
return func_info;
}
#endif