WSNewPacket (C 函数)

int WSNewPacket(WSLINK link)

跳到 link 中当前数据包的结尾处.

更多信息

  • 即使当前顶层表达式不是一个标准的数据包类型, WSNewPacket() 也可用.
  • 如果已到数据包的结尾处,则 WSNewPacket() 不做任何事情.
  • 若发生错误,则 WSNewPacket() 返回0;若函数成功,则返回非零值.
  • 如果 WSNewPacket() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h. 已对 WSNewPacket() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* read the next number from a link and ignore everything else */

void f(WSLINK lp)
{
    /* determine the type of the data on the link */
    switch(WSGetType(lp))
    {
        case WSTKINT:
            /* integer data */
            break;
        case WSTKREAL:
            /* floating point data */
            break;
        default:
            /* Skip to the next packet if not a number. */
            if(! WSNewPacket(lp))
                { /* unable to jump ahead to the next packet on lp */ }
    }
}