/////////////////////////////////////////////////////////////////////////////// // // Module: WriteRegistry.h // // Desc: Defines the interface for the WriteRegistry functions. // // Copyright (c) 2003 Grant McDorman // This file is licensed using a BSD-type license: // This software is provided 'as-is', without any express or implied // warranty. In no event will the authors be held liable for any damages // arising from the use of this software. // // Permission is granted to anyone to use this software for any purpose, // including commercial applications, and to alter it and redistribute it // freely, subject to the following restrictions: // // 1. The origin of this software must not be misrepresented; you must not // claim that you wrote the original software. If you use this software // in a product, an acknowledgment in the product documentation would be // appreciated but is not required. // 2. Altered source versions must be plainly marked as such, and must not be // misrepresented as being the original software. // 3. This notice may not be removed or altered from any source distribution. // /////////////////////////////////////////////////////////////////////////////// #ifndef WRITEREGISTRY_H #define WRITEREGISTRY_H //----------------------------------------------------------------------------- // WriteRegistryTreeToFile // Writes a registry tree to a file. Registry tree is fully specified by // the string. // // Parameters // key registry key name; must start with one of: // HKEY_CLASSES_ROOT or HKCR // HKEY_CURRENT_USER or HKCU // HKEY_LOCAL_MACHINE or HKLM // HKEY_CURRENT_CONFIG or HKCC // HKEY_USERS or HKU // HKEY_PERFORMANCE_DATA or HKPD // HKEY_DYN_DATA or HKDD // filename file to write to // // Return Values // Returns true if successful. // // Remarks // Translates call into WriteRegistryTreeToFile(section, subkey, filename). // bool WriteRegistryTreeToFile(const TCHAR *key, const TCHAR *filename); //----------------------------------------------------------------------------- // WriteRegistryTreeToFile // Writes a registry tree to a file. Registry tree is relative to given key, // which must be one of the root keys. // // Parameters // section registry section; must be one of // HKEY_CLASSES_ROOT // HKEY_CURRENT_USER // HKEY_LOCAL_MACHINE // HKEY_CURRENT_CONFIG // HKEY_USERS // HKEY_PERFORMANCE_DATA // HKEY_DYN_DATA // subkey subkey relative to section // filename file to write to // // Return Values // Returns true if successful. // // Remarks // none // bool WriteRegistryTreeToFile(HKEY section, const TCHAR *subkey, const TCHAR *filename); #endif //WRITEREGISTRY_H