WSPutInteger16List (C 函数)
int WSPutInteger16List(WSLINK link,short *a,int n)
把从位置 a 开始的 n 个16位整数列表写入由 link 指定的 WSTP 连接.
范例
基本范例 (1)
#include "wstp.h"
/* send a one-dimensional list of 16-bit integers to a link */
void f(WSLINK lp)
{
short list[10], i;
for(i = 0; i < 10; i++)
list[i] = i;
if(! WSPutInteger16List(lp, (short *)list, 10))
{ /* unable to send the list to lp */ }
}