]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/windows/shell32/shell32.factor
windows.shell32: add some file drag-drop functions
[factor.git] / 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 ( )