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.

42 lines
835 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. LOCBINARY.H
  5. History:
  6. --*/
  7. #if !defined (PARSUTIL_LOCBINARY_H)
  8. #define PARSUTIL_LOCBINARY_H
  9. #pragma warning(disable : 4275)
  10. ////////////////////////////////////////////////////////////////////////////////
  11. class LTAPIENTRY CPULocBinary : public ILocBinary, public CPULocChild
  12. {
  13. // Construction
  14. public:
  15. CPULocBinary(CPULocParser * pParent);
  16. DECLARE_CLUNKNOWN();
  17. // COM Interfaces
  18. public:
  19. // Standard Debugging interface.
  20. void STDMETHODCALLTYPE AssertValidInterface() const;
  21. //
  22. // ILocBinary interface
  23. //
  24. BOOL STDMETHODCALLTYPE CreateBinaryObject(BinaryId, CLocBinary * REFERENCE);
  25. };
  26. ////////////////////////////////////////////////////////////////////////////////
  27. #pragma warning(default : 4275)
  28. #endif