Subversion Repositories spk

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 cycrow 1
#pragma once
2
 
3
 
4
[ComVisible(true)]
5
[ComImport]
6
[Guid("4657278B-411B-11D2-839A-00C04FD918D0")]
7
[InterfaceType(System::Runtime::InteropServices::ComInterfaceType::InterfaceIsIUnknown)]
8
public interface IDropTargetHelper
9
{
10
	/*
11
    void DragEnter(
12
        [In] IntPtr hwndTarget,
13
        [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject,
14
        [In] ref Win32Point pt,
15
        [In] int effect);
16
 
17
    void DragLeave();
18
 
19
    void DragOver(
20
        [In] ref Win32Point pt,
21
        [In] int effect);
22
 
23
    void Drop(
24
        [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject,
25
        [In] ref Win32Point pt,
26
        [In] int effect);
27
 
28
    void Show(
29
        [In] bool show);*/
30
};