Changeset 9198 for trunk/include/win


Ignore:
Timestamp:
Sep 3, 2002, 2:34:35 PM (23 years ago)
Author:
sandervl
Message:

clipboard cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/clipboard.h

    r4 r9198  
    1 /* $Id: clipboard.h,v 1.1 1999-05-24 20:19:09 ktk Exp $ */
     1/* $Id: clipboard.h,v 1.2 2002-09-03 12:34:35 sandervl Exp $ */
    22
    33#ifndef __WINE_CLIPBOARD_H
     
    66#include "windef.h"
    77
    8 struct tagWND;
    9 
    108typedef struct tagWINE_CLIPFORMAT {
    11     WORD        wFormatID;
    12     WORD        wRefCount;
    13     WORD        wDataPresent;
     9    UINT        wFormatID;
     10    UINT        wRefCount;
     11    BOOL        wDataPresent;
    1412    LPSTR       Name;
     13    HANDLE      hData16;
     14    HANDLE      hDataSrc32;
    1515    HANDLE      hData32;
    16     DWORD       BufSize;
     16    ULONG       drvData;
    1717    struct tagWINE_CLIPFORMAT *PrevFormat;
    1818    struct tagWINE_CLIPFORMAT *NextFormat;
    19     HANDLE16    hData16;
    2019} WINE_CLIPFORMAT, *LPWINE_CLIPFORMAT;
    2120
    22 typedef struct tagCLIPBOARD_DRIVER
    23 {
    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);
    3521
    3622#endif /* __WINE_CLIPBOARD_H */
Note: See TracChangeset for help on using the changeset viewer.