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

Windows编程

开发平台:

Visual C++

  1. //**********************************************************************
  2. // File name: ids.h
  3. //
  4. //      Definition of CDropSource
  5. //
  6. // Copyright (c) 1992 - 1997 Microsoft Corporation. All rights reserved.
  7. //**********************************************************************
  8. #if !defined( _IDS_H_ )
  9. #define _IDS_H_
  10. #include "assert.h"
  11. class CSimpleDoc;
  12. interface CDropSource : public IDropSource
  13. {
  14. int m_nCount;
  15. CSimpleDoc FAR * m_pDoc;
  16. CDropSource(CSimpleDoc FAR * pDoc) {
  17. OutputDebugString("In IDS's constructorrn");
  18. m_pDoc = pDoc;
  19. m_nCount = 0;
  20. };
  21. ~CDropSource() {
  22. OutputDebugString("In IDS's destructorrn");
  23. } ;
  24. STDMETHODIMP QueryInterface (REFIID riid, LPVOID FAR* ppv);
  25. STDMETHODIMP_(ULONG) AddRef ();
  26. STDMETHODIMP_(ULONG) Release ();
  27.    // *** IDropSource methods ***
  28. STDMETHODIMP QueryContinueDrag (BOOL fEscapePressed, DWORD grfKeyState);
  29. STDMETHODIMP GiveFeedback (DWORD dwEffect);
  30. private:
  31. };
  32. #endif