You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
556 B
19 lines
556 B
/*
|
|
===============================================================================
|
|
Module - RegistryHelper.hpp
|
|
System - Common
|
|
Author - Xuesong Yuan
|
|
Created - 2001-09-06
|
|
Description - Registry helper functions
|
|
Updates -
|
|
===============================================================================
|
|
*/
|
|
|
|
#ifndef REGISTRYHELPER_H
|
|
#define REGISTRYHELPER_H
|
|
|
|
DWORD CopyRegistryKey(HKEY sourceKey, HKEY targetKey, BOOL fSetSD);
|
|
DWORD DeleteRegistryKey(HKEY hKey, LPCTSTR lpSubKey);
|
|
DWORD MoveRegistry();
|
|
|
|
#endif
|