source: trunk/include/win/clipboard.h

Last change on this file was 9198, checked in by sandervl, 23 years ago

clipboard cleanup

File size: 508 bytes
RevLine 
[9198]1/* $Id: clipboard.h,v 1.2 2002-09-03 12:34:35 sandervl Exp $ */
[4]2
3#ifndef __WINE_CLIPBOARD_H
4#define __WINE_CLIPBOARD_H
5
6#include "windef.h"
7
8typedef struct tagWINE_CLIPFORMAT {
[9198]9 UINT wFormatID;
10 UINT wRefCount;
11 BOOL wDataPresent;
[4]12 LPSTR Name;
[9198]13 HANDLE hData16;
14 HANDLE hDataSrc32;
[4]15 HANDLE hData32;
[9198]16 ULONG drvData;
[4]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.