source: trunk/src/user32/dragdrop.h@ 10367

Last change on this file since 10367 was 8553, checked in by sandervl, 23 years ago

added ole drag and drop (wps -> odin app) support

File size: 668 bytes
Line 
1/* $Id: dragdrop.h,v 1.2 2002-06-02 19:34:27 sandervl Exp $ */
2
3/*
4 * Win32 Drag 'n Drop functions for OS/2
5 *
6 * Copyright 2002 Sander van Leeuwen
7 *
8 * Project Odin Software License can be found in LICENSE.TXT
9 *
10 */
11#ifndef __DRAGDROP_H__
12#define __DRAGDROP_H__
13
14BOOL DragDropAccept(HWND hwnd);
15BOOL DragDropDragOver(HWND hwnd, DWORD dwEffect);
16BOOL DragDropDragLeave(HWND hwnd);
17BOOL DragDropFiles(HWND hwnd, POINT point, UINT cFiles, LPSTR pszFiles, UINT cbszFiles, BOOL fNonClient = FALSE);
18BOOL DragDropDragEnter(HWND hwnd, POINT point, UINT cFiles, LPSTR pszFiles, UINT cbszFiles, DWORD dwEffect, BOOL fNonClient = FALSE);
19
20#endif //__DRAGDROP_H__
21
22
Note: See TracBrowser for help on using the repository browser.