336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

#include <iostream>

using namespace std;

#include <atlbase.h> // add


int main()

{

HKEY hKey;

TCHAR szDefaultPath[MAX_PATH] = { 0, };

DWORD dwBufLen = MAX_PATH;


RegOpenKeyEx( HKEY_CURRENT_USER, L"Software\\DAUM\\PotPlayer", 0, KEY_READ, &hKey );

RegQueryValueEx( hKey, L"ProgramPath", NULL, NULL, (LPBYTE)szDefaultPath, &dwBufLen );

RegCloseKey( hKey );


return 0;

}


이렇게 하면 szDefaultPath 변수에 HKEY_CURRENT_USER\Software\DAUM\PotPlayer 경로의 ProgramPath 값을 받아올 수 있다.

'Programming > C / C++' 카테고리의 다른 글

This program might not have installed correctly  (0) 2015.02.07
문자열 _T("")와 L""  (0) 2015.02.07
# 과 ##  (0) 2015.02.07
strncpy 와 strncpy_s 에 대한 오해  (0) 2015.02.07
함수 포인터 typedef  (0) 2015.02.07
Posted by 역시인생한방
,