Horje
c++ write number to registry Code Example
c++ write number to registry
int value = 0;

HKEY key;
RegOpenKeyEx(HKEY_LOCAL_MACHINE, L"SOFTWARE\\MyApp", 0, KEY_SET_VALUE, &key);
RegSetValueEx(key, L"myKey", NULL, REG_DWORD, (BYTE*)&value, sizeof(value));
RegCloseKey(key);




Cpp

Related
9+20 Code Example 9+20 Code Example
ifstream file (“code2.txt”); dev C++ Code Example ifstream file (“code2.txt”); dev C++ Code Example
how to create array with not constant size in cpp Code Example how to create array with not constant size in cpp Code Example
how to show c++ binary files in sublime text Code Example how to show c++ binary files in sublime text Code Example
zero fill in c++ Code Example zero fill in c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8