WSPutInteger32List (C 関数)
int WSPutInteger32List(WSLINK link,const int *a,int n)
の場所から始まる 個の32ビットの整数のリストを, で指定されたWSTP接続に置く.
例題
例 (1)
#include "wstp.h"
/* send a one-dimensional list of 32-bit integers to a link */
void f(WSLINK lp)
{
int list[10], i;
for(i = 0; i < 10; i++)
list[i] = i;
if(! WSPutInteger32List(lp, (int *)list, 10))
{ /* unable to send the list to lp */ }
}