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.
|
|
//-----------------------------------------------------------------------------
//
// File: _globalid.h
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
//
//-----------------------------------------------------------------------------
#ifndef ESPUTIL__GLOBALID_H
#define ESPUTIL__GLOBALID_H
///////////////////////////////////////////////////////////////////////////////
//
// global id path object, represents a fully qualified path from the root of
// the project to a specified item
//
///////////////////////////////////////////////////////////////////////////////
#pragma warning(disable : 4275)
class LTAPIENTRY CGlobalIdPath : public CTypedPtrList < CPtrList, CGlobalId * > { public: int NOTHROW operator==(const CGlobalIdPath &) const; const CGlobalIdPath & operator = (const CGlobalIdPath& idPath); ~CGlobalIdPath();
void SetIdPath(const CLString &strFilePath, const CLString &strResourcePath);
void GetStrPath(CLString &strFilePath, CLString &strResourcePath) const;
void NOTHROW DeleteContents(); }; #pragma warning(default : 4275)
#endif
|