/*++ Copyright (C) 1996-2001 Microsoft Corporation Module Name: REGCRC.H Abstract: History: --*/ #include #include #include #include class CRegCRC { public: static HRESULT ComputeValueCRC(HKEY hKey, LPCTSTR szValueName, DWORD dwPrevCRC, DWORD& dwNewCRC); static HRESULT ComputeKeyValuesCRC(HKEY hKey, DWORD dwPrevCRC, DWORD& dwNewCRC); static HRESULT ComputeKeyCRC(HKEY hKey, DWORD dwPrevCRC, DWORD& dwNewCRC); static HRESULT ComputeTreeCRC(HKEY hKey, DWORD dwPrevCRC, DWORD& dwNewCRC); };