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
40 lines
1.0 KiB
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: LocBinary.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// Written by: jstall
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#if !defined (PARSUTIL_LOCBINARY_H)
|
|
#define PARSUTIL_LOCBINARY_H
|
|
|
|
|
|
#pragma warning(disable : 4275)
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
class LTAPIENTRY CPULocBinary : public ILocBinary, public CPULocChild
|
|
{
|
|
// Construction
|
|
public:
|
|
CPULocBinary(CPULocParser * pParent);
|
|
|
|
DECLARE_CLUNKNOWN();
|
|
|
|
// COM Interfaces
|
|
public:
|
|
// Standard Debugging interface.
|
|
void STDMETHODCALLTYPE AssertValidInterface() const;
|
|
|
|
//
|
|
// ILocBinary interface
|
|
//
|
|
BOOL STDMETHODCALLTYPE CreateBinaryObject(BinaryId, CLocBinary * REFERENCE);
|
|
};
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma warning(default : 4275)
|
|
|
|
#endif
|