source: trunk/include/oslibdnd.h@ 10367

Last change on this file since 10367 was 10182, checked in by sandervl, 22 years ago

header updates

File size: 860 bytes
Line 
1/* $Id: oslibdnd.h,v 1.1 2003-07-28 11:25:50 sandervl Exp $ */
2/*
3 * Window Drag and Drop functions for OS/2
4 *
5 *
6 * Copyright 2003 Sander van Leeuwen (sandervl@innotek.de)
7 *
8 *
9 * Project Odin Software License can be found in LICENSE.TXT
10 *
11 */
12
13#ifndef __OSLIBDND_H__
14#define __OSLIBDND_H__
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20DWORD WINAPI OSLibDragOver(LPVOID lpDragStruct, DWORD x, DWORD y);
21DWORD WINAPI OSLibDragLeave(LPVOID lpDragStruct);
22DWORD WINAPI OSLibDragDrop(LPVOID lpDragStruct, DWORD x, DWORD y, LPSTR lpszDnDString);
23LPVOID WINAPI OSLibCreateDragStruct(HWND hwndWin32, DWORD x, DWORD y, LPSTR lpszDnDString);
24void WINAPI OSLibFreeDragStruct(LPVOID lpDragStruct);
25
26#ifdef OS2_INCLUDED
27BOOL OSLibRenderFormat(PDRAGTRANSFER pDragTransfer);
28ULONG OSLibEndConversation();
29#endif
30
31#ifdef __cplusplus
32}
33#endif
34
35#endif //__OSLIBDND_H__
Note: See TracBrowser for help on using the repository browser.