(自己瞎编的一个动态连接库的代码片段)
...
// This is an example of an exported variable
NOTHO_API char * nNotho=0;
// This is an example of an exported function.
NOTHO_API char * fnNotho(void)
{
return nNotho;
}
...
(在自己的应用程序中直接引用nNotho失败,出错:'notho' : undeclared identifier)
啥原因呀,咋办呢?