IDROPSRC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IDROPSRC.H
  3.  *
  4.  * Definitions and function prototypes for a template
  5.  * DropSrouce object.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #ifndef _IDROPSRC_H_
  14. #define _IDROPSRC_H_
  15. #include <inole.h>
  16. class CDropSource;
  17. typedef class CDropSource *PCDropSource;
  18. class CDropSource : public IDropSource
  19.     {
  20.     protected:
  21.         ULONG           m_cRef;     //Interface reference count
  22.         LPVOID          m_pBack;    //Backpointer
  23.     public:
  24.         CDropSource(LPVOID);
  25.         ~CDropSource(void);
  26.         //IDropSource interface members
  27.         STDMETHODIMP QueryInterface(REFIID, LPVOID *);
  28.         STDMETHODIMP_(ULONG) AddRef(void);
  29.         STDMETHODIMP_(ULONG) Release(void);
  30.         STDMETHODIMP QueryContinueDrag(BOOL, DWORD);
  31.         STDMETHODIMP GiveFeedback(DWORD);
  32.     };
  33. #endif //_IDROPSRC_H_