windows-nt/Source/XPSP1/NT/base/win32/fusion/inc/hashnode.h

23 lines
399 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifndef __HASHNODE_H_INCLUDED__
#define __HASHNODE_H_INCLUDED__
class CHashNode {
public:
CHashNode();
virtual ~CHashNode();
static HRESULT Create(LPCWSTR pwzSource, CHashNode **ppHashNode);
BOOL IsDuplicate(LPCWSTR pwzStr) const;
private:
HRESULT Init(LPCWSTR pwzSource);
private:
LPWSTR _pwzSource;
};
#endif