Leaked source code of windows server 2003
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.
|
|
/*++
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__
|