REG_DWORD en C
Fermé
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
-
8 oct. 2010 à 01:54
seo610 Messages postés 596 Date d'inscription mardi 9 février 2010 Statut Membre Dernière intervention 30 juin 2015 - 8 oct. 2010 à 04:50
seo610 Messages postés 596 Date d'inscription mardi 9 février 2010 Statut Membre Dernière intervention 30 juin 2015 - 8 oct. 2010 à 04:50
1 réponse
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
102
8 oct. 2010 à 04:50
8 oct. 2010 à 04:50
J'ai trouver :
#include <windows.h>
int main()
{
HKEY hHKCU = NULL, hMyKey = NULL;
DWORD value = 1;
if (RegOpenKeyEx(HKEY_CURRENT_USER, NULL, 0, KEY_WRITE, &hHKCU) == ERROR_SUCCESS)
{
if (RegCreateKeyEx(hHKCU, "My_Subkey\\MyKey", 0, NULL, 0, KEY_WRITE, NULL, &hMyKey, NULL) == ERROR_SUCCESS)
{
RegSetValueEx(hMyKey, "ThisIsADword", 0, REG_DWORD, (BYTE*)&value, sizeof(DWORD));
RegCloseKey(hMyKey);
}
}
return 0;
}
\x85 http://forums.devarticles.com/c-c-help-52/how-to-create-a-dword-using-c-71108.html
#include <windows.h>
int main()
{
HKEY hHKCU = NULL, hMyKey = NULL;
DWORD value = 1;
if (RegOpenKeyEx(HKEY_CURRENT_USER, NULL, 0, KEY_WRITE, &hHKCU) == ERROR_SUCCESS)
{
if (RegCreateKeyEx(hHKCU, "My_Subkey\\MyKey", 0, NULL, 0, KEY_WRITE, NULL, &hMyKey, NULL) == ERROR_SUCCESS)
{
RegSetValueEx(hMyKey, "ThisIsADword", 0, REG_DWORD, (BYTE*)&value, sizeof(DWORD));
RegCloseKey(hMyKey);
}
}
return 0;
}
\x85 http://forums.devarticles.com/c-c-help-52/how-to-create-a-dword-using-c-71108.html