Source code of Windows XP (NT5)
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.

22 lines
399 B

  1. #ifndef __HASHNODE_H_INCLUDED__
  2. #define __HASHNODE_H_INCLUDED__
  3. class CHashNode {
  4. public:
  5. CHashNode();
  6. virtual ~CHashNode();
  7. static HRESULT Create(LPCWSTR pwzSource, CHashNode **ppHashNode);
  8. BOOL IsDuplicate(LPCWSTR pwzStr) const;
  9. private:
  10. HRESULT Init(LPCWSTR pwzSource);
  11. private:
  12. LPWSTR _pwzSource;
  13. };
  14. #endif