Changeset 7248 in vbox for trunk/src/VBox
- Timestamp:
- Mar 3, 2008 5:47:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxClipboard.h
r7073 r7248 35 35 struct _VBOXCLIPBOARDCLIENTDATA *pNext; 36 36 struct _VBOXCLIPBOARDCLIENTDATA *pPrev; 37 37 38 38 VBOXCLIPBOARDCONTEXT *pCtx; 39 39 40 40 uint32_t u32ClientID; 41 41 42 42 bool fAsync: 1; /* Guest is waiting for a message. */ 43 43 44 44 bool fMsgQuit: 1; 45 45 bool fMsgReadData: 1; 46 46 bool fMsgFormats: 1; 47 47 48 48 struct { 49 49 VBOXHGCMCALLHANDLE callHandle; 50 50 VBOXHGCMSVCPARM *paParms; 51 51 } async; 52 52 53 53 struct { 54 54 void *pv; … … 56 56 uint32_t u32Format; 57 57 } data; 58 58 59 59 uint32_t u32AvailableFormats; 60 60 uint32_t u32RequestedFormat; 61 61 62 62 } VBOXCLIPBOARDCLIENTDATA; 63 63 64 64 /* 65 * The service functions. Locking is between the service thread and the platform depende dnwindows thread.65 * The service functions. Locking is between the service thread and the platform dependent windows thread. 66 66 */ 67 67 bool vboxSvcClipboardLock (void);
Note:
See TracChangeset
for help on using the changeset viewer.