有没有人知道为什么数据存储管理API #ifndef __MAIN_H__
#define __MAIN_H__
#include <windows.h>
/* To use this exported function of dll, include this header
* in your project.
*/
#ifdef BUILD_DLL
#define DLL_EXPORT __declspec(dllexport)
#else
#define DLL_EXPORT __declspec(dllimport)
#endif
#ifdef __cplusplus
extern "C"
{
#endif
void DLL_EXPORT SomeFunction(const LPCSTR sometext);
#ifdef __cplusplus
}
#endif
#endif // __MAIN_H__
和export
操作不适用于API资源管理器?
访问API page。
同时用于获取长时间运行操作的API is available。
答案 0 :(得分:5)
我们推迟配置更改以使其显示在资源管理器中。 [正在努力!]
答案 1 :(得分:1)