File: Windows\Win32\System\Ole\DropTargetMock.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\tests\TestUtilities\System.Windows.Forms.Primitives.TestUtilities.csproj (System.Windows.Forms.Primitives.TestUtilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Windows.Win32.System.Com;
using Windows.Win32.System.SystemServices;
 
namespace Windows.Win32.System.Ole;
 
internal unsafe class DropTargetMock : IDropTarget.Interface, IManagedWrapper<IDropTarget>
{
    public virtual HRESULT DragEnter(IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect)
    {
        throw new NotImplementedException();
    }
 
    public virtual HRESULT DragOver(MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect)
    {
        throw new NotImplementedException();
    }
 
    public virtual HRESULT DragLeave()
    {
        throw new NotImplementedException();
    }
 
    public virtual HRESULT Drop(IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect)
    {
        throw new NotImplementedException();
    }
}