Specifies a handle to a foreign function. You can use Ora_Ffi.Find_Function to obtain the handle.
TYPE Ora_Ffi.Funchandletype;
/* This example uses Ora_Ffi_Funchandletype */
PROCEDURE define_c_funcs IS
getresult_fhandle ora_ffi.funcHandleType;
foo_fhandle ora_ffi.funcHandleType;
BEGIN
/* Register the info for function getresult */
getresult_fhandle := ora_ffi.register_function
(testlib_lhandle, 'getresult');
...
/* Register the info for function foo */
foo_fhandle := ora_ffi.register_function
(testlib_lhandle,'foo');
...
END;