Source code of Windows XP (NT5)
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 name: ioipo.h
//
// Definition of COleInPlaceObject
//
// Copyright (c) 1993 Microsoft Corporation. All rights reserved.
//**********************************************************************
#if !defined( _IOIPO_H_)
#define _IOIPO_H_
#include <ole2.h>
#include "obj.h"
class CSimpSvrObj;
interface COleInPlaceObject : public IOleInPlaceObject { private: CSimpSvrObj FAR * m_lpObj;
public: COleInPlaceObject::COleInPlaceObject(CSimpSvrObj FAR * lpSimpSvrObj) { m_lpObj = lpSimpSvrObj; }; COleInPlaceObject::~COleInPlaceObject() {};
// IUnknown Methods
STDMETHODIMP QueryInterface (REFIID riid, LPVOID FAR* ppvObj); STDMETHODIMP_(ULONG) AddRef (); STDMETHODIMP_(ULONG) Release ();
STDMETHODIMP InPlaceDeactivate (); STDMETHODIMP UIDeactivate () ; STDMETHODIMP SetObjectRects ( LPCRECT lprcPosRect, LPCRECT lprcClipRect); STDMETHODIMP GetWindow ( HWND FAR* lphwnd) ; STDMETHODIMP ContextSensitiveHelp ( BOOL fEnterMode); STDMETHODIMP ReactivateAndUndo (); };
#endif
|