mirror of https://github.com/tongzx/nt5src
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.
42 lines
635 B
42 lines
635 B
/*++
|
|
|
|
Copyright (C) 1996-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Abstract:
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef __PATHUTL_H__
|
|
#define __PATHUTL_H__
|
|
|
|
#include <genlex.h>
|
|
#include <objpath.h>
|
|
|
|
class CRelativeObjectPath
|
|
{
|
|
CObjectPathParser m_Parser;
|
|
LPWSTR m_wszRelPath;
|
|
|
|
CRelativeObjectPath( const CRelativeObjectPath& );
|
|
CRelativeObjectPath& operator=( const CRelativeObjectPath& );
|
|
|
|
public:
|
|
|
|
ParsedObjectPath* m_pPath;
|
|
|
|
CRelativeObjectPath();
|
|
~CRelativeObjectPath();
|
|
|
|
BOOL Parse( LPCWSTR wszPath );
|
|
|
|
BOOL operator== ( CRelativeObjectPath& rPath );
|
|
LPCWSTR GetPath();
|
|
};
|
|
|
|
#endif // __PATHUTL_H__
|