MLPutInteger64List (C Function)
MLPutInteger64List has been replaced by WSPutInteger64List.
Details
![](Files/MLPutInteger64List.en/details_1.png)
- MLPutInteger64List() returns 0 in the event of an error, and a nonzero value if the function succeeds.
- Use MLError() to retrieve the error code if MLPutInteger64List() fails.
- MLPutInteger64List() is declared in the MathLink header file mathlink.h.
Examples
Basic Examples (1)
#include "mathlink.h"
/* send a one-dimensional list of 64-bit integers to a link */
void f(MLINK lp)
{
mlint64 list[10], i;
for(i = 0; i < 10; i++)
list[i] = i;
if(! MLPutInteger64List(lp, (mlint64 *)list, 10))
{ /* unable to send the list to lp */ }
}