我在 VS 项目编译中收到警告。虽然编译成功,但我无法获得文件的输出。你知道如何设置上面的每一个吗?
它在谈论哪个命令和outfile文件?应该给出什么路径?
//testlib.h
#include <stdio.h>
__declspec(dllexport) void hello();
c++文件文件如下:
//testlib.cpp
#include "testlib.h"
void hello() {
printf("DLL hello() called\n");
}
main.cpp 如下:
//main.cpp
#include <testlib.h>
int main() {
hello();
}
我正在为 testlib.h 和 testlib.cpp 创建 dll。然后我想用它来运行 main.cpp 文件。