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.

40 lines
1.0 KiB

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: LocBinary.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Written by: jstall
  8. //
  9. //-----------------------------------------------------------------------------
  10. #if !defined (PARSUTIL_LOCBINARY_H)
  11. #define PARSUTIL_LOCBINARY_H
  12. #pragma warning(disable : 4275)
  13. ////////////////////////////////////////////////////////////////////////////////
  14. class LTAPIENTRY CPULocBinary : public ILocBinary, public CPULocChild
  15. {
  16. // Construction
  17. public:
  18. CPULocBinary(CPULocParser * pParent);
  19. DECLARE_CLUNKNOWN();
  20. // COM Interfaces
  21. public:
  22. // Standard Debugging interface.
  23. void STDMETHODCALLTYPE AssertValidInterface() const;
  24. //
  25. // ILocBinary interface
  26. //
  27. BOOL STDMETHODCALLTYPE CreateBinaryObject(BinaryId, CLocBinary * REFERENCE);
  28. };
  29. ////////////////////////////////////////////////////////////////////////////////
  30. #pragma warning(default : 4275)
  31. #endif