Changeset 86960 in vbox
- Timestamp:
- Nov 23, 2020 12:02:35 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141480
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/VBoxClipboardSvc.h
r86959 r86960 94 94 * @since 6.1 - still a todo */ 95 95 #define VBOX_SHCL_HOST_FN_ERROR 5 96 /** Reports that a new clipboard area has been registered.97 * @since 6.1 - not implemented */98 #define VBOX_SHCL_HOST_FN_AREA_REGISTER 699 /** Reports that a clipboard area has been unregistered.100 * @since 6.1 - not implemented */101 #define VBOX_SHCL_HOST_FN_AREA_UNREGISTER 7102 /** Reports that a client (host / guest) has attached to a clipboard area.103 * @since 6.1 - not implemented */104 #define VBOX_SHCL_HOST_FN_AREA_ATTACH 8105 /** Reports that a client (host / guest) has detached from a clipboard area.106 * @since 6.1 - not implemented */107 #define VBOX_SHCL_HOST_FN_AREA_DETACH 9108 96 /** @} */ 109 97 -
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp
r86959 r86960 1044 1044 RT_CASE_RET_STR(VBOX_SHCL_HOST_FN_CANCEL); 1045 1045 RT_CASE_RET_STR(VBOX_SHCL_HOST_FN_ERROR); 1046 RT_CASE_RET_STR(VBOX_SHCL_HOST_FN_AREA_REGISTER);1047 RT_CASE_RET_STR(VBOX_SHCL_HOST_FN_AREA_UNREGISTER);1048 RT_CASE_RET_STR(VBOX_SHCL_HOST_FN_AREA_ATTACH);1049 RT_CASE_RET_STR(VBOX_SHCL_HOST_FN_AREA_DETACH);1050 1046 } 1051 1047 return "Unknown";
Note:
See TracChangeset
for help on using the changeset viewer.