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.

38 lines
931 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: SubParse.H
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #ifndef PBASE_SUBPARSE_H
  11. #define PBASE_SUBPARSE_H
  12. extern const IID IID_ILocSubParserManager;
  13. typedef CTypedPtrArray<CPtrArray, ILocParser *> ILocSubParserArray;
  14. DECLARE_INTERFACE_(ILocSubParserManager, IUnknown)
  15. {
  16. //
  17. // IUnknown standard interface.
  18. //
  19. STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR*ppvObj) PURE;
  20. STDMETHOD_(ULONG, AddRef)(THIS) PURE;
  21. STDMETHOD_(ULONG, Release)(THIS) PURE;
  22. //
  23. // Standard Debugging interface.
  24. //
  25. STDMETHOD_(void, AssertValidInterface)(THIS) CONST_METHOD PURE;
  26. STDMETHOD(InitSubParsers)(THIS_ ILocSubParserArray REFERENCE)
  27. CONST_METHOD PURE;
  28. };
  29. #endif