__declspec(dllexport)
时间: 2024-02-12 17:50:44 浏览: 74
__declspec(dllexport)和__declspec(dllimport)的区别是什么
5星 · 资源好评率100%
__declspec(dllexport) is a Microsoft-specific keyword in C++ that is used to export functions, variables, or objects from a DLL (Dynamic Link Library) for use by other applications or modules. It is the opposite of __declspec(dllimport), which is used by applications or modules that want to use the exported functions, variables, or objects from the DLL.
阅读全文