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