Rev | Line | |
---|
[10182] | 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
|
---|
| 17 | extern "C" {
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
| 20 | DWORD WINAPI OSLibDragOver(LPVOID lpDragStruct, DWORD x, DWORD y);
|
---|
| 21 | DWORD WINAPI OSLibDragLeave(LPVOID lpDragStruct);
|
---|
| 22 | DWORD WINAPI OSLibDragDrop(LPVOID lpDragStruct, DWORD x, DWORD y, LPSTR lpszDnDString);
|
---|
| 23 | LPVOID WINAPI OSLibCreateDragStruct(HWND hwndWin32, DWORD x, DWORD y, LPSTR lpszDnDString);
|
---|
| 24 | void WINAPI OSLibFreeDragStruct(LPVOID lpDragStruct);
|
---|
| 25 |
|
---|
| 26 | #ifdef OS2_INCLUDED
|
---|
| 27 | BOOL OSLibRenderFormat(PDRAGTRANSFER pDragTransfer);
|
---|
| 28 | ULONG 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.