我应该使用
bool __declspec(dllexport) function()
{
return true;
}
或者
__declspec(dllexport) bool function()
{
return true;
}
这两者有什么区别?这会影响函数的执行方式或从应用程序调用时返回的内容吗?(此代码用于 DLL)。
我应该使用
bool __declspec(dllexport) function()
{
return true;
}
或者
__declspec(dllexport) bool function()
{
return true;
}
这两者有什么区别?这会影响函数的执行方式或从应用程序调用时返回的内容吗?(此代码用于 DLL)。