gpt4 book ai didi

c++ - 将 shlwapi.h 链接到 StrCmpLogicalW 函数

转载 作者:行者123 更新时间:2023-11-30 00:58:42 27 4
gpt4 key购买 nike

知道如何将此代码从 C# 移植到 C++ 吗?

[DllImport("shlwapi.dll", CharSet = CharSet.Unicode)]
private static extern int StrCmpLogicalW(string psz1, string psz2);

如果我在 C++ 的头文件中尝试这一行,编译器会生成一堆错误。

#include <Shlwapi.h>

最佳答案

错误是链接器错误,因为您没有包含相应的 .lib 文件 Shlwapi.lib。

您可以在项目设置中包含 .lib 文件,或者通过添加此文件

#pragma comment(lib, "Shlwapi.lib")

例如,StdAfx.h。

关于c++ - 将 shlwapi.h 链接到 StrCmpLogicalW 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5782047/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com