39 lines
893 B
C
39 lines
893 B
C
|
//-----------------------------------------------------------------------------
|
||
|
//
|
||
|
// File: SubParse.H
|
||
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef PBASE_SUBPARSE_H
|
||
|
#define PBASE_SUBPARSE_H
|
||
|
|
||
|
|
||
|
extern const IID IID_ILocSubParserManager;
|
||
|
|
||
|
typedef CTypedPtrArray<CPtrArray, ILocParser *> ILocSubParserArray;
|
||
|
|
||
|
DECLARE_INTERFACE_(ILocSubParserManager, IUnknown)
|
||
|
{
|
||
|
//
|
||
|
// IUnknown standard interface.
|
||
|
//
|
||
|
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR*ppvObj) PURE;
|
||
|
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
|
||
|
STDMETHOD_(ULONG, Release)(THIS) PURE;
|
||
|
|
||
|
//
|
||
|
// Standard Debugging interface.
|
||
|
//
|
||
|
STDMETHOD_(void, AssertValidInterface)(THIS) CONST_METHOD PURE;
|
||
|
|
||
|
STDMETHOD(InitSubParsers)(THIS_ ILocSubParserArray REFERENCE)
|
||
|
CONST_METHOD PURE;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|