Kiln » TortoiseHg » TortoiseHg
Clone URL:  
CShellExtDnd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _CShellExtDnd_h_ #define _CShellExtDnd_h_ #include "CShellExtCMenu.h" //CShellExtCMenu implements IContextMenu3, IShellExtInit class CShellExtDnd: public CShellExtCMenu { protected: virtual void RunDialog(const std::string&); public: explicit CShellExtDnd(const char dummy); ~CShellExtDnd(); // IContextMenu3 STDMETHODIMP QueryContextMenu( HMENU hMenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags); // IShellExtInit STDMETHODIMP Initialize( LPCITEMIDLIST pIDFolder, LPDATAOBJECT pDataObj, HKEY hKeyID); }; #endif