中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助

KSVMLGetVersion

获取SVML产品版本信息:

int KSVMLGetVersion(KSVMLVersion *ver)

参数

参数名

描述

取值范围

输入/输出

ver

产品信息结构体

非空

输出

返回值

  • 成功:返回1。
  • 失败:返回0

示例

#include <stdio.h>
#include "ksvml.h"

int main()
{
        KSVMLVersion* ver = (KSVMLVersion*)malloc(sizeof(KSVMLVersion));
        int status = KSVMLGetVersion(ver);
        printf("Component           : %s\n", ver.component);
        printf("Version             : %s\n", ver.version);
        printf("Support Package Name: %s\n", ver.supportPackage);
        printf("Compile Time        : %s\n", ver.compileTime);

        return 0;
}

运行结果:

Component           : boostkit-kml-svml
Version             : 1.3.0
Support Package Name: BoostKit-kml-svml_1.3.0
Compile Time        : 2021/08/31-12:00

注:版本号和编译时间以实际运行结果为准,上述结果仅供参考。