如何从dll获取静态变量值

时间:2013-05-22 07:12:39

标签: c++

我需要从DLL中获取值。

X.exe

extern __declspec(dllimport) int fun();

int y = fun();

exe cpp正在调用dll函数并期望返回值。

Y.dll

static int x = 10;

int fun()
{
 return x;
}

dll cpp函数返回静态变量值。

当我检查“y”的值时,它总是为零。

请告诉我是否可以使用fun()在exe中获取x的值。

0 个答案:

没有答案