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
42 lines
835 B
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
LOCBINARY.H
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
#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
|