Changeset 9198 for trunk/include/win
- Timestamp:
- Sep 3, 2002, 2:34:35 PM (23 years ago)
- File:
-
- 1 edited
-
trunk/include/win/clipboard.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/clipboard.h
r4 r9198 1 /* $Id: clipboard.h,v 1. 1 1999-05-24 20:19:09 ktkExp $ */1 /* $Id: clipboard.h,v 1.2 2002-09-03 12:34:35 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_CLIPBOARD_H … … 6 6 #include "windef.h" 7 7 8 struct tagWND;9 10 8 typedef struct tagWINE_CLIPFORMAT { 11 WORDwFormatID;12 WORDwRefCount;13 WORDwDataPresent;9 UINT wFormatID; 10 UINT wRefCount; 11 BOOL wDataPresent; 14 12 LPSTR Name; 13 HANDLE hData16; 14 HANDLE hDataSrc32; 15 15 HANDLE hData32; 16 DWORD BufSize;16 ULONG drvData; 17 17 struct tagWINE_CLIPFORMAT *PrevFormat; 18 18 struct tagWINE_CLIPFORMAT *NextFormat; 19 HANDLE16 hData16;20 19 } WINE_CLIPFORMAT, *LPWINE_CLIPFORMAT; 21 20 22 typedef struct tagCLIPBOARD_DRIVER23 {24 void (*pEmpty)(void);25 void (*pSetData)(UINT);26 BOOL (*pGetData)(UINT);27 void (*pResetOwner)(struct tagWND *, BOOL);28 } CLIPBOARD_DRIVER;29 30 extern CLIPBOARD_DRIVER *CLIPBOARD_Driver;31 32 extern void CLIPBOARD_ResetLock(HQUEUE16 hqRef, HQUEUE16 hqNew);33 extern void CLIPBOARD_DeleteRecord(LPWINE_CLIPFORMAT lpFormat, BOOL bChange);34 extern BOOL CLIPBOARD_IsPresent(WORD wFormat);35 21 36 22 #endif /* __WINE_CLIPBOARD_H */
Note:
See TracChangeset
for help on using the changeset viewer.
