各位高手 帮忙解释以下下边宏定义的意思??#defineNS_EXPORT_(type)type__declspec(dllexport)__stdcall[解
各位高手 帮忙解释以下下边宏定义的意思??
#define NS_EXPORT_(type) type __declspec(dllexport) __stdcall
[解决办法]
type 返回值
__declspec(dllexport) dll的导出函数
__stdcall 调用约定,参数从右向左进栈,退出时由被调用者退栈
