home *** CD-ROM | disk | FTP | other *** search
- /*
- * IDROPTGT.H
- *
- * Definitions and function prototypes for a template
- * DropTarget object.
- *
- * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
- *
- * Kraig Brockschmidt, Microsoft
- * Internet : kraigb@microsoft.com
- * Compuserve: >INTERNET:kraigb@microsoft.com
- */
-
-
- #ifndef _IDROPTGT_H_
- #define _IDROPTGT_H_
-
- #include <inole.h>
-
- class CDropTarget;
- typedef class CDropTarget *PCDropTarget;
-
- class CDropTarget : public IDropTarget
- {
- protected:
- ULONG m_cRef; //Interface reference count.
- LPVOID m_pBack; //Backpointer
-
- public:
- CDropTarget(LPVOID);
- ~CDropTarget(void);
-
- //IDropTarget interface members
- STDMETHODIMP QueryInterface(REFIID, LPVOID *);
- STDMETHODIMP_(ULONG) AddRef(void);
- STDMETHODIMP_(ULONG) Release(void);
-
- STDMETHODIMP DragEnter(LPDATAOBJECT, DWORD, POINTL
- , LPDWORD);
- STDMETHODIMP DragOver(DWORD, POINTL, LPDWORD);
- STDMETHODIMP DragLeave(void);
- STDMETHODIMP Drop(LPDATAOBJECT, DWORD, POINTL, LPDWORD);
- };
-
-
- #endif //_IDROPTGT_H_
-