⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 idropsrc.h

📁 英文版的 想要的话可以下载了 为大家服务
💻 H
字号:
/*
 * IDROPSRC.H
 *
 * Definitions and function prototypes for a template
 * DropSrouce object.
 *
 * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
 *
 * Kraig Brockschmidt, Microsoft
 * Internet  :  kraigb@microsoft.com
 * Compuserve:  >INTERNET:kraigb@microsoft.com
 */


#ifndef _IDROPSRC_H_
#define _IDROPSRC_H_

#include <inole.h>

class CDropSource;
typedef class CDropSource *PCDropSource;

class CDropSource : public IDropSource
    {
    protected:
        ULONG           m_cRef;     //Interface reference count
        LPVOID          m_pBack;    //Backpointer

    public:
        CDropSource(LPVOID);
        ~CDropSource(void);

        //IDropSource interface members
        STDMETHODIMP QueryInterface(REFIID, LPVOID *);
        STDMETHODIMP_(ULONG) AddRef(void);
        STDMETHODIMP_(ULONG) Release(void);

        STDMETHODIMP QueryContinueDrag(BOOL, DWORD);
        STDMETHODIMP GiveFeedback(DWORD);
    };


#endif //_IDROPSRC_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -