Return SHLoadIndirectString 的值是错误代码

Return value of SHLoadIndirectString is an errorcode

您好,我一直在尝试通过从相应应用程序的 AppManifest.xml 获取的 metro 应用程序的名称。知道 SHLoadIndirectString 可以用于此目的。在手动检查其功能时,我无法获得结果资源。代码片段如下。

#include <iostream>
using namespace std;
#include <Shlwapi.h>
int main(){
    LPWSTR output = L"";
    LPWSTR input = L"@{Microsoft.BingMaps_2.1.3230.2048_x64__8wekyb3d8bbwe?ms-resource://Microsoft.BingMaps/resources/AppDisplayName}";
    int result = SHLoadIndirectString(input, output, sizeof(output), NULL );
    cout<<output;
    return 0;
}

return 值 "result" 始终为负值(如果我更改与应用程序相关的输入字符串,则会发生变化)。请指导我的错误。谢谢

答对了。

#include <iostream>

using namespace std;
#include <Shlwapi.h>
int main()
{
    PWSTR output = (PWSTR) malloc(sizeof(WCHAR)*256);


    PCWSTR input = L"@{C:\Program Files\WindowsApps\Microsoft.BingMaps_2.1.3230.2048_x64__8wekyb3d8bbwe\resources.pri?ms-resource://Microsoft.BingMaps/Resources/AppShortDisplayName}";
    int result = SHLoadIndirectString(input, output, 256, NULL );

    cout<<output;
    return 0;
}