2008/10/08
비어있지 않은 레지스트리 키 지우기 - SHDeleteKey
#include <Shlwapi.h>
DWORD Result = SHDeleteKey(HKEY_CURRENT_USER, "Software\Microsoft\...");
switch(Result)
{
case ERROR_SUCCESS:
// Registry Deleted
break;
case ERROR_FILE_NOT_FOUND:
// Registry key not found
break;
default:
break;
}
Original Post : http://neodreamer-dev.tistory.com/181
Labels:
C++
,
registry
,
SHDeleteKey
,
TistoryOldPost
,
레지스트리
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment