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; 
}

しかし、次のコンパイル エラーが発生します。

setDescription についても同じエラーが発生します。どうやらそれらは仮想としてプログラムされているようです。つまり、実際のコードが含まれていないことを意味します。

virtual HRESULT WINAPI SetPath(LPCSTR pszFile) = 0;

ヘッダー ファイルか何かが不足しているに違いありませんが、手がかりがありません。私は少し迷っています。これらのエラーが発生するべきではないと思います。何か案は?どうもありがとうございました :-)

4

2 に答える 2

0

使用する

psl->SetPath(CW2T(lpszPathObj)); 

MBCS プロジェクトがある場合。この場合、SetPath には char* が必要です。プロジェクトを Unicode に切り替えても、この表記法は常に機能します。

于 2013-10-29T13:11:06.520 に答える
0

プロジェクト設定を からUse Multi-Byte Character Setに変更しますUse Unicode Character Set。このオプションは、Project Defaults の General 構成設定にあります。

于 2013-10-29T13:05:49.477 に答える