]> gitweb.factorcode.org Git - factor.git/commitdiff
windows.shell32: add some file drag-drop functions
authorAlexander Iljin <ajsoft@yandex.ru>
Mon, 21 Aug 2017 22:56:46 +0000 (01:56 +0300)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 22 Jan 2018 21:09:41 +0000 (13:09 -0800)
basis/windows/shell32/shell32.factor

index 62ba7af3884fe59a6d8941b295419ffa3567b27e..805b091ab47681135c8581c85da61b96e9f0d126 100644 (file)
@@ -309,10 +309,16 @@ COM-INTERFACE: IShellFolder IUnknown {000214E6-0000-0000-C000-000000000046}
 
 FUNCTION: HRESULT SHGetDesktopFolder ( IShellFolder** ppshf )
 
+FUNCTION: void DragAcceptFiles ( HWND hWnd, BOOL fAccept )
+
 FUNCTION: UINT DragQueryFileW ( HDROP hDrop,
                                 UINT iFile,
                                 LPWSTR lpszFile,
                                 UINT cch )
 ALIAS: DragQueryFile DragQueryFileW
 
+FUNCTION: BOOL DragQueryPoint ( HDROP hDrop, POINT* lppt )
+
+FUNCTION: void DragFinish ( HDROP hDrop )
+
 FUNCTION: BOOL IsUserAnAdmin ( )