added request amb293 - SetFailState
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40843
This commit is contained in:
parent
f4390609b3
commit
936337e54d
@ -246,6 +246,17 @@ static cell_t GetPluginInfo(IPluginContext *pContext, const cell_t *params)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static cell_t SetFailState(IPluginContext *pContext, const cell_t *params)
|
||||||
|
{
|
||||||
|
char *str;
|
||||||
|
pContext->LocalToString(params[1], &str);
|
||||||
|
|
||||||
|
CPlugin *pPlugin = g_PluginSys.GetPluginByCtx(pContext->GetContext());
|
||||||
|
pPlugin->SetErrorState(Plugin_Error, "%s", str);
|
||||||
|
|
||||||
|
return pContext->ThrowNativeErrorEx(SP_ERROR_ABORTED, "%s", str);
|
||||||
|
}
|
||||||
|
|
||||||
REGISTER_NATIVES(coreNatives)
|
REGISTER_NATIVES(coreNatives)
|
||||||
{
|
{
|
||||||
{"GetPluginFilename", GetPluginFilename},
|
{"GetPluginFilename", GetPluginFilename},
|
||||||
@ -257,5 +268,6 @@ REGISTER_NATIVES(coreNatives)
|
|||||||
{"MorePlugins", MorePlugins},
|
{"MorePlugins", MorePlugins},
|
||||||
{"ReadPlugin", ReadPlugin},
|
{"ReadPlugin", ReadPlugin},
|
||||||
{"ThrowError", ThrowError},
|
{"ThrowError", ThrowError},
|
||||||
|
{"SetFailState", SetFailState},
|
||||||
{NULL, NULL},
|
{NULL, NULL},
|
||||||
};
|
};
|
||||||
|
@ -212,6 +212,16 @@ native bool:IsPluginDebugging(Handle:hndl);
|
|||||||
*/
|
*/
|
||||||
native bool:GetPluginInfo(Handle:plugin, PluginInfo:info, String:buffer[], maxlength);
|
native bool:GetPluginInfo(Handle:plugin, PluginInfo:info, String:buffer[], maxlength);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Causes the plugin to enter a failed state. An error will be thrown and
|
||||||
|
* the plugin will be paused until it is unloaded or reloaded.
|
||||||
|
*
|
||||||
|
* @param string Message to print.
|
||||||
|
* @noreturn
|
||||||
|
* @error Always.
|
||||||
|
*/
|
||||||
|
native SetFailState(const String:string[]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aborts the current callback and throws an error. This function
|
* Aborts the current callback and throws an error. This function
|
||||||
* does not return in that no code is executed following it.
|
* does not return in that no code is executed following it.
|
||||||
|
Loading…
Reference in New Issue
Block a user