我正在尝试将我的应用程序的快捷方式保存在启动文件夹中。这一切都可以编译,但它无法真正保存游戏。错误似乎发生在hres = ppf->Save(wsz, TRUE);
,hrs 设置为 -2147024891。如果这意味着特定的东西,我还没有发现什么。我的代码几乎是从 MSDN 逐字复制的,所以我很困惑为什么它不起作用。也许我没有权限将快捷方式保存到启动文件夹?再说一次,我对这一切也很陌生,所以这可能是我犯的一些基本错误。我也在复制我所有的#includes,以防万一出现问题。
编辑:
首先,为避免混淆,这是基于 CLI 的 C++。
检查 hres 是否有错误只是 MDSN 代码的一部分。这实际上与网站示例中的代码几乎完全相同。我已经设置了断点,这就是我知道在该行hres = ppf->Save(wsz, TRUE);
运行后hrs变成-2147024891的方式。
如果这些错误,mediaMaestroLocation 设置为"C:\Users\Keith\Documents\Visual Studio 2012\Projects\MediaMaestro\Debug\MediaMaestro.exe"
,startupDestination 为"C:\Users\Keith\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
。虽然 exe 位置看起来不错,但我想知道在目标文件夹路径之后没有 \ 是否重要。我已经检查过了,但我需要先花几分钟弄清楚如何做。
#include <windows.h>
#include <string>
#include <stdio.h>
#include <shobjidl.h>
#include <shlobj.h>
#include "objbase.h"
#include <objidl.h>
#include <shlguid.h>
#include <winnls.h>
#using <System.dll>
#using <System.Windows.Forms.dll>
using namespace System;
using namespace System::Windows::Forms;
char startupDestination[MAX_PATH];
char mediaMaestroLocation[MAX_PATH];
DWORD nChars = 0;
BOOL yChars = 0;
HRESULT CreateLink()
{
CoInitializeEx( NULL, 0 );
HRESULT hres = 0;
IShellLink* psl;
if (SUCCEEDED(hres))
{
// 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(mediaMaestroLocation);
psl->SetDescription("Media Maestro");
// 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, startupDestination, -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();
}
}
CoUninitialize();
return hres;
}
这是调用该函数的 UI 中的单击事件:
void settingsLaunchOnStart_Click( Object^ Sender, EventArgs^ e )
{
if (settingsLaunchOnStart->Checked == false)
{
HRESULT r;
nChars = GetModuleFileName( NULL, mediaMaestroLocation, sizeof(mediaMaestroLocation) );
yChars = SHGetFolderPath( NULL, CSIDL_STARTUP, NULL, SHGFP_TYPE_CURRENT, startupDestination);
r = CreateLink();
}
else if (settingsLaunchOnStart->Checked == true)
{
//code to remove the shortcut
}
}
有什么我想念的吗?