/*****************************************************************************\ * * * olebind.h Data binding interfaces for OLE * * * * OLE Version 2.0 * * * * Copyright (c) Microsoft Corp. All rights reserved. * * * \*****************************************************************************/ #if !defined( _OLEBIND_H_ ) #define _OLEBIND_H_ #if !defined( INITGUID ) #include #endif #include <__atlmfc_core.h> #pragma warning(push) #pragma warning(disable : _ATLMFC_DISABLED_WARNINGS) DEFINE_GUID(IID_IBoundObject, 0x9BFBBC00,0xEFF1,0x101A,0x84,0xED,0x00,0xAA,0x00,0x34,0x1D,0x07); DEFINE_GUID(IID_IBoundObjectSite, 0x9BFBBC01,0xEFF1,0x101A,0x84,0xED,0x00,0xAA,0x00,0x34,0x1D,0x07); typedef interface IBoundObject FAR* LPBOUNDOBJECT; typedef interface IBoundObjectSite FAR* LPBOUNDOBJECTSITE; typedef interface ICursor FAR* LPCURSOR; typedef interface ICursor FAR* FAR* LPLPCURSOR; typedef interface ICursorMove FAR* LPCURSORMOVE; typedef interface ICursorScroll FAR* LPCURSORSCROLL; typedef interface ICursorFind FAR* LPCURSORFIND; typedef interface ICursorUpdateARow FAR* LPCURSORUPDATEAROW; ////////////////////////////////////////////////////////////////////////////// // // IBoundObject interface // ////////////////////////////////////////////////////////////////////////////// #undef INTERFACE #define INTERFACE IBoundObject DECLARE_INTERFACE_(IBoundObject, IUnknown) { // // IUnknown methods // #pragma warning(push) #pragma warning(disable:26433) STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef)(THIS) PURE; STDMETHOD_(ULONG,Release)(THIS) PURE; // // IBoundObject methods // STDMETHOD(OnSourceChanged)(THIS_ DISPID dispid, BOOL fBound, BOOL FAR* lpfOwnXferOut) PURE; STDMETHOD(IsDirty)(THIS_ DISPID dispid) PURE; #pragma warning(pop) }; ////////////////////////////////////////////////////////////////////////////// // // IBoundObjectSite interface // ////////////////////////////////////////////////////////////////////////////// #undef INTERFACE #define INTERFACE IBoundObjectSite DECLARE_INTERFACE_(IBoundObjectSite, IUnknown) { // // IUnknown methods // #pragma warning(push) #pragma warning(disable:26433) STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef)(THIS) PURE; STDMETHOD_(ULONG,Release)(THIS) PURE; // // IBoundObjectSite methods // STDMETHOD(GetCursor)(THIS_ DISPID dispid, LPLPCURSOR ppCursor, LPVOID FAR* ppcidOut) PURE; #pragma warning(pop) }; // _ATLMFC_DISABLED_WARNINGS #pragma warning(pop) #endif // !defined( _OLEBIND_H_ )