VC2015中的FMI实施

时间:2018-12-28 07:50:13

标签: implementation fmi

我正在vc2015中实现协同仿真。当我尝试使用LoadLibraryA加载从fmi1.0生成的dll文件时,它成功。但是,当我尝试从fmi2.0加载dll时,它总是失败,并出现hMod = NULL。有人知道如何解决吗?

#include "stdafx.h"
#include <atlstr.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "fmi2Functions.h"
#include "fmi2FunctionTypes.h"
#include "fmi2TypesPlatform.h"
#include "zh.h"
int main() {
    CString dll_name= "Node1.dll";
    HMODULE hMod;
    char strVer[50] = "";
    strcat_s(strVer, "Node1");
    strcat_s(strVer, "_fmi2InstantiateSlave");
    hMod = LoadLibraryA("Unnamed.dll");


}

0 个答案:

没有答案