WSClearError (C 函数)
int WSClearError(WSLINK link)
如果可能则清除 中的错误.
更多信息
- WSClearError() 会激活以前未激活的链接.
- WSClearError() 对于某些灾难性错误,例如,WSEDEAD,将返回0,它表明链接被意外关闭.
- WSClearError() 对于成功完成,将返回一个非零值.
- WSTP 的标头文件 wstp.h 已对 WSClearError() 作出声明.
范例
基本范例 (1)
#include <stdio.h>
#include "wstp.h"
/* send an integer to a link and check for an error */
void f(WSLINK lp)
{
if(! WSPutInteger(lp, 10))
{
printf("WSTP error: %s\n", WSErrorMessage(lp));
WSClearError(lp);
}
}