RegSetValueEx和CHAR

时间:2012-01-30 16:57:05

标签: c++ visual-c++

考虑以下代码

addHash("hash");

bool addHash(char* hash) {
    HKEY hKey = 0;
    int code = RegOpenKey(HKEY_CURRENT_USER, subkey, &hKey);

    const int length = strlen(hash)+1;
    WCHAR whash[100];
    MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, hash, strlen(hash), whash, 100);
    LONG setRes = RegSetValueEx(hKey, L"hash", 0, REG_SZ, (LPBYTE)whash, strlen(hash)+1);

    return true;
}

代码编译完成后,“ha”被注册到注册表中。有人能告诉我问题在哪里吗?

提前谢谢!

2 个答案:

答案 0 :(得分:1)

最后一个参数是倒数第二个参数指向的字节数,而不是字符数。

因此strlen(hash) + 1的前五个字节(whash)将存储在注册表中。改为:

LONG setRes = RegSetValueEx(hKey,
                            L"hash",
                            0,
                            REG_SZ,
                            (LPBYTE)whash,
                            (wcslen(whash) + 1) * sizeof(WCHAR));

您可能还需要初始化whash(我认为MultiByteToWideChar()不会为您添加空终结符):

WCHAR whash[100] = { 0 };

答案 1 :(得分:1)

我认为这就是你要做的事情:

#include <tchar.h>
#include <Windows.h>
using namespace std;

bool addHash(wstring hash) {
    const wchar_t* wHash = hash.c_str();
    LONG ret = RegSetKeyValue(HKEY_CURRENT_USER, _T("Software\\aa\\test"), _T("hash"), REG_SZ, wHash, hash.length() * sizeof(wchar_t));
    return (ret == ERROR_SUCCESS);
}

int main()
{
    addHash(_T("A42B2094EDC43"));
    return 0;
}

希望这会有所帮助;)