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.
|
|
//-----------------------------------------------------------------------------
//
// File: Binary.H
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
// Class to hold 'binary' (non-string) information about a localizable item.
//
//-----------------------------------------------------------------------------
#ifndef BINARY_H
#define BINARY_H
//
// Binary interface. Parsers provide an implementation of this in order
// to create binary objects for other users.
//
extern const IID IID_ILocBinary;
DECLARE_INTERFACE_(ILocBinary, IUnknown) { //
// IUnknown standard interface.
//
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR*ppvObj) PURE; STDMETHOD_(ULONG, AddRef)(THIS) PURE; STDMETHOD_(ULONG, Release)(THIS) PURE;
//
// Standard Debugging interface.
//
STDMETHOD_(void, AssertValidInterface)(THIS) CONST_METHOD PURE;
STDMETHOD_(BOOL, CreateBinaryObject)(THIS_ BinaryId, CLocBinary *REFERENCE) PURE; };
#endif // BINARY_H
|