Changeset 100616 in vbox for trunk/include
- Timestamp:
- Jul 17, 2023 6:22:58 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxClipboardExt.h
r100615 r100616 50 50 #define VBOX_CLIPBOARD_EXT_FN_DATA_READ (2) 51 51 #define VBOX_CLIPBOARD_EXT_FN_DATA_WRITE (3) 52 #define VBOX_CLIPBOARD_EXT_FN_ERROR (4) 52 53 53 54 typedef DECLCALLBACKTYPE(int, FNSHCLEXTCALLBACK,(uint32_t u32Function, uint32_t u32Format, void *pvData, uint32_t cbData)); … … 79 80 pfnCallback; 80 81 } SetCallback; 82 /** Reports a clipboard error. */ 83 struct 84 { 85 /** Clipboard ID. Optional and can be NULL. */ 86 char *pszId; 87 /** User friendly error message. */ 88 char *pszMsg; 89 /** IPRT-style error code. */ 90 int rc; 91 } Error; 81 92 } u; 82 93 } SHCLEXTPARMS;
Note:
See TracChangeset
for help on using the changeset viewer.