0

我在我编写的代码之一中使用 SetDllDirectory() 但是在编译项目时出现错误:

SetDllDirectory was not declared in this scope

这是代码片段

void LoadDLLPath() {
wxString value;
if (regkeyExists) {
    if (regkey->HasValue("LibPath")) {
        regkey->QueryValue("LibPath", value);
        if (!value.empty()) {
            wxSetEnv("ImpressionLib", value);
            SetDllDirectory(value.c_str());
        }
    }

}
SetDllDirectory("C:\\Program Files\\Project\\ABCPROJECT\\lib");
wxSetEnv("ProjectPath", "C:\\Program Files\\Project\\ABCPROJECT\\lib");

}
4

1 回答 1

0

预处理器常量 _WIN32_WINNT 的值是多少?它在文件 WinBase.h 中定义,它可能会提供一些信息。

有关 SetDllDirectory 的 Microsoft 文档(https://msdn.microsoft.com/en-us/library/windows/desktop/ms686203%28v=vs.85%29.aspx)说:

To compile an application that uses this function, define _WIN32_WINNT as 0x0502 

使用 Visual Studio,您还应该检查项目属性“平台工具集”是否设置为最小值“v100”。

于 2014-01-16T14:42:44.837 回答