0

我有这些包括:

#include <stdafx.h>
#include <winnls.h>
#include <shobjidl.h>
#include <shlobj.h> 
#include <shlguid.h>
#include <objbase.h>
#include <objidl.h>
#include <windows.h>

我发现这段代码可以创建快捷方式:

HRESULT CreateLink(LPCWSTR lpszPathObj, LPCSTR lpszPathLink, LPCWSTR lpszDesc){ 
    HRESULT hres; 
    IShellLink* psl; 

    // Get a pointer to the IShellLink interface. It is assumed that CoInitialize
    // has already been called.
    hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID*)&psl); 
    if (SUCCEEDED(hres)){ 
        IPersistFile* ppf; 

        // Set the path to the shortcut target and add the description. 
        psl->SetPath(lpszPathObj); 
        psl->SetDescription(lpszDesc); 

        // Query IShellLink for the IPersistFile interface, used for saving the 
        // shortcut in persistent storage. 
        hres = psl->QueryInterface(IID_IPersistFile, (LPVOID*)&ppf); 

        if (SUCCEEDED(hres)) 
        { 
            WCHAR wsz[MAX_PATH]; 

            // Ensure that the string is Unicode. 
            MultiByteToWideChar(CP_ACP, 0, lpszPathLink, -1, wsz, MAX_PATH); 

            // Add code here to check return value from MultiByteWideChar 
            // for success.

            // Save the link by calling IPersistFile::Save. 
            hres = ppf->Save(wsz, TRUE); 
            ppf->Release(); 
        } 
        psl->Release(); 
    } 
    return hres; 
}

但是我收到了这些编译错误:“没有匹配函数调用'IShellLinkA::SetPath(const WCHAR*&)' 候选者是:virtual HRESULT IShellLinkA::SetPath(const CHAR*)”

对于 setDescription,我得到了同样的错误,显然它们被编程为虚拟,这意味着它们中没有真正的代码:

virtual HRESULT WINAPI SetPath(LPCSTR pszFile) = 0;

我一定是缺少头文件或其他东西,但我不知道。我有点迷茫,我认为不应该得到这些错误。有任何想法吗?非常感谢 :-)

4

2 回答 2

0

将您的项目设置从 更改Use Multi-Byte Character SetUse Unicode Character Set。此选项位于项目默认值下的常规配置设置中。

于 2013-10-29T13:05:49.477 回答
0

利用

psl->SetPath(CW2T(lpszPathObj)); 

如果你有一个 MBCS 项目。在这种情况下,SetPath 需要一个 char*。即使您将项目切换到 Unicode,此表示法也将始终有效。

于 2013-10-29T13:11:06.520 回答