graphics/psdrv forgets to pull in @DLLFLAGS@, and so is compiled non-PIC if
[wine/multimedia.git] / include / clipboard.h
blob4bda6641b6c93940880600812504e5de8495a2dc
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 *);
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 */