Moved more things to the X11 driver.
[wine/multimedia.git] / include / clipboard.h
blob4bfd7242ff8e721806e77a50c4c8cb8de55b6eee
1 #ifndef __WINE_CLIPBOARD_H
2 #define __WINE_CLIPBOARD_H
4 #include "win.h"
5 #include "wintypes.h"
7 typedef struct tagCLIPFORMAT {
8 WORD wFormatID;
9 WORD wRefCount;
10 WORD wDataPresent;
11 LPSTR Name;
12 HANDLE32 hData32;
13 DWORD BufSize;
14 struct tagCLIPFORMAT *PrevFormat;
15 struct tagCLIPFORMAT *NextFormat;
16 HANDLE16 hData16;
17 } CLIPFORMAT, *LPCLIPFORMAT;
19 typedef struct _CLIPBOARD_DRIVER
21 void (*pEmptyClipboard)();
22 void (*pSetClipboardData)(UINT32);
23 BOOL32 (*pRequestSelection)();
24 void (*pResetOwner)(WND *, BOOL32);
25 } CLIPBOARD_DRIVER;
27 CLIPBOARD_DRIVER *CLIPBOARD_GetDriver();
29 extern void CLIPBOARD_ResetLock(HQUEUE16 hqRef, HQUEUE16 hqNew);
30 extern void CLIPBOARD_DeleteRecord(LPCLIPFORMAT lpFormat, BOOL32 bChange);
31 extern BOOL32 CLIPBOARD_IsPresent(WORD wFormat);
33 #endif /* __WINE_CLIPBOARD_H */