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

No comments :

Post a Comment