An Embeddable NoSQL Database Engine |
Tweet |
Follow @unqlite_db |
UnQLite C/C++ API Reference - Delete a Foreign Function.
Syntax
int unqlite_delete_function(unqlite_vm *pVm,const char *zName);
Delete a foreign function.
Description
This routine deletes an installed foreign function. That is, any future invocation of the function will throw a call to an undefined function error.
Parameters
pVm |
A pointer to a unQLite Virtual Machine. |
zName |
A pointer to a null terminated string holding the name of the foreign function to be deleted. |
Return value
UNQLITE_OK is returned on success. Any other return value indicates failure (no such foreign function).
See also
Installing Foreign Functions, Installing Foreign Constants.
Copyright © Symisc Systems