ReactOS 0.4.15-dev-8102-g108db8f
CDropTargetHelper.cpp
Go to the documentation of this file.
1/*
2 * file system folder
3 *
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998, 1999, 2002 Juergen Schmied
6 * Copyright 2009 Andrew Hill
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 */
22
23#include "precomp.h"
24
26
27/***********************************************************************
28* IDropTargetHelper implementation
29*/
30
32{
33}
34
36{
37}
38
40{
41 FIXME ("(%p)->()\n", this);
42 return E_NOTIMPL;
43}
45{
46 FIXME ("(%p)->()\n", this);
47 return E_NOTIMPL;
48}
49
50
51HRESULT WINAPI CDropTargetHelper::DragEnter (HWND hwndTarget, IDataObject* pDataObject, POINT* ppt, DWORD dwEffect)
52{
53 FIXME ("(%p)->(%p %p %p 0x%08x)\n", this, hwndTarget, pDataObject, ppt, dwEffect);
54 return E_NOTIMPL;
55}
56
58{
59 FIXME ("(%p)->()\n", this);
60 return E_NOTIMPL;
61}
62
64{
65 FIXME ("(%p)->(%p 0x%08x)\n", this, ppt, dwEffect);
66 return E_NOTIMPL;
67}
68
70{
71 FIXME ("(%p)->(%p %p 0x%08x)\n", this, pDataObject, ppt, dwEffect);
72 return E_NOTIMPL;
73}
74
76{
77 FIXME ("(%p)->(%u)\n", this, fShow);
78 return E_NOTIMPL;
79}
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
void shell(int argc, const char *argv[])
Definition: cmds.c:1231
#define FIXME(fmt,...)
Definition: debug.h:114
STDMETHOD() Show(BOOL fShow) override
STDMETHOD() Drop(IDataObject *pDataObject, POINT *ppt, DWORD dwEffect) override
STDMETHOD() DragLeave() override
STDMETHOD() DragEnter(HWND hwndTarget, IDataObject *pDataObject, POINT *ppt, DWORD dwEffect) override
virtual HRESULT WINAPI InitializeFromWindow(HWND hwnd, POINT *ppt, IDataObject *pDataObject)
virtual HRESULT WINAPI InitializeFromBitmap(LPSHDRAGIMAGE pshdi, IDataObject *pDataObject)
STDMETHOD() DragOver(POINT *ppt, DWORD dwEffect) override
#define E_NOTIMPL
Definition: ddrawi.h:99
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
#define WINAPI
Definition: msvc.h:6