| Line |  | 
|---|
| 1 | /* $Id: clipboard.h,v 1.2 2002-09-03 12:34:35 sandervl Exp $ */ | 
|---|
| 2 |  | 
|---|
| 3 | #ifndef __WINE_CLIPBOARD_H | 
|---|
| 4 | #define __WINE_CLIPBOARD_H | 
|---|
| 5 |  | 
|---|
| 6 | #include "windef.h" | 
|---|
| 7 |  | 
|---|
| 8 | typedef struct tagWINE_CLIPFORMAT { | 
|---|
| 9 | UINT        wFormatID; | 
|---|
| 10 | UINT        wRefCount; | 
|---|
| 11 | BOOL        wDataPresent; | 
|---|
| 12 | LPSTR       Name; | 
|---|
| 13 | HANDLE      hData16; | 
|---|
| 14 | HANDLE      hDataSrc32; | 
|---|
| 15 | HANDLE      hData32; | 
|---|
| 16 | ULONG       drvData; | 
|---|
| 17 | struct tagWINE_CLIPFORMAT *PrevFormat; | 
|---|
| 18 | struct tagWINE_CLIPFORMAT *NextFormat; | 
|---|
| 19 | } WINE_CLIPFORMAT, *LPWINE_CLIPFORMAT; | 
|---|
| 20 |  | 
|---|
| 21 |  | 
|---|
| 22 | #endif /* __WINE_CLIPBOARD_H */ | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.