Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作业内核对象是否仅在 Win2000 上可用?
我收到以下编译器错误:- HANDLE hJob = CreateJobObject(NULL, NULL);
错误 C3861:“CreateJobObject”:找不到标识符
请建议。
我知道这很旧......但我最近遇到了同样的问题,直到我更仔细地阅读了 MSDN 文章。来自 CreateJobObjects MSDN 文章“要编译使用此函数的应用程序,请将 _WIN32_WINNT 定义为 0x0500 或更高版本。有关详细信息,请参阅使用 Windows 标头。”
确保您的“定义_WIN32_WINNT ...”在您的“#include”之前