WSPutInteger64 (C 函数)
更多信息
- 通过给定数字列表,然后使用 FromDigits 转换成数字,便可以发送任意精度的整数给 Wolfram 语言.
- 若发生错误,则 WSPutInteger64() 返回0;若函数成功,则返回非零值.
- 如果 WSPutInteger64() 失败,则使用 WSError() 检索错误代码.
- WSTP 的标头文件 wstp.h 已对 WSPutInteger64() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* send a 64-bit number to a link */
void f(WSLINK lp)
{
mlint64 a;
a = 0x6553600065535;
if(! WSPutInteger64(lp, a))
{ /* unable to send the 64 bit integer to lp */ }
}