标签: c++
我需要从DLL中获取值。
extern __declspec(dllimport) int fun(); int y = fun();
exe cpp正在调用dll函数并期望返回值。
static int x = 10; int fun() { return x; }
dll cpp函数返回静态变量值。
当我检查“y”的值时,它总是为零。
请告诉我是否可以使用fun()在exe中获取x的值。