WSPutInteger64List (C 函数)
范例
基本范例 (1)
#include "wstp.h"
/* send a one-dimensional list of 64-bit integers to a link */
void f(WSLINK lp)
{
mlint64 list[10], i;
for(i = 0; i < 10; i++)
list[i] = i;
if(! WSPutInteger64List(lp, (mlint64 *)list, 10))
{ /* unable to send the list to lp */ }
}