Added declarations for:
callfunc_begin_i get_func_id
This commit is contained in:
parent
741666b742
commit
47d1881c29
|
@ -623,11 +623,26 @@ native unpause(flag[], const param1[]="",const param2[]="");
|
||||||
* func - function name
|
* func - function name
|
||||||
* Return value:
|
* Return value:
|
||||||
* 1 - Success
|
* 1 - Success
|
||||||
* 0 - Runtime error
|
|
||||||
* -1 - Plugin not found
|
* -1 - Plugin not found
|
||||||
* -2 - Function not found */
|
* -2 - Function not found */
|
||||||
native callfunc_begin(const func[], const plugin[]="");
|
native callfunc_begin(const func[], const plugin[]="");
|
||||||
|
|
||||||
|
/* Call a function in this / an another plugin by id.
|
||||||
|
* Parameters:
|
||||||
|
* plugin - plugin id; the id you would pass to get_plugin
|
||||||
|
* If < 0, the current plugin is taken
|
||||||
|
* func - function id
|
||||||
|
* Return value:
|
||||||
|
* 1 - Success
|
||||||
|
* -1 - Plugin not found
|
||||||
|
* -2 - Function not executable */
|
||||||
|
native callfunc_begin_i(func, plugin = -1);
|
||||||
|
|
||||||
|
/* Get a function id (for callfunc_begin_i)
|
||||||
|
To get the plugin id, use the find_plugin stock
|
||||||
|
*/
|
||||||
|
native get_func_id(const funcName[], pluginId = -1);
|
||||||
|
|
||||||
/* Push a parameter (integer, string, float) */
|
/* Push a parameter (integer, string, float) */
|
||||||
native callfunc_push_int(value);
|
native callfunc_push_int(value);
|
||||||
native callfunc_push_str(const VALUE[]);
|
native callfunc_push_str(const VALUE[]);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user