Changeset 102026 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Nov 9, 2023 12:10:01 PM (13 months ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/vboxwl.cpp
r102025 r102026 103 103 * @param pvUser User data. 104 104 */ 105 static DECLCALLBACK(void)vboxwl_gtk_clipboard_read(GtkClipboard* pClipboard,106 107 105 static void vboxwl_gtk_clipboard_read(GtkClipboard* pClipboard, 106 GtkSelectionData* pSelectionData, 107 gpointer pvUser) 108 108 { 109 109 guchar *pData; … … 257 257 * @param pvUser User data. 258 258 */ 259 static DECLCALLBACK(void)vboxwl_gtk_clipboard_write(GtkClipboard *pClipboard,260 261 259 static void vboxwl_gtk_clipboard_write(GtkClipboard *pClipboard, 260 GtkSelectionData *pSelectionData, 261 guint info, gpointer pvUser) 262 262 { 263 263 GdkAtom target = gtk_selection_data_get_target(pSelectionData); … … 314 314 * @param pvUser User data. 315 315 */ 316 static DECLCALLBACK(void)vboxwl_gtk_clipboard_write_fini(GtkClipboard *pClipboard, gpointer pvUser)316 static void vboxwl_gtk_clipboard_write_fini(GtkClipboard *pClipboard, gpointer pvUser) 317 317 { 318 318 VBCL_LOG_CALLBACK; … … 402 402 * @param pvUser User data. 403 403 */ 404 static DECLCALLBACK(gboolean)vboxwl_gtk_watchdog(gpointer pvUser)404 static gboolean vboxwl_gtk_watchdog(gpointer pvUser) 405 405 { 406 406 RT_NOREF(pvUser); 407 408 //VBCL_LOG_CALLBACK;409 407 410 408 if ( g_tsGtkQuit > 0 -
trunk/src/VBox/Additions/x11/VBoxClient/wayland-helper-dcp.cpp
r102025 r102026 538 538 * @param uVersion Interface version. 539 539 */ 540 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_registry_global_handler(540 static void vbcl_wayland_hlp_dcp_registry_global_handler( 541 541 void *pvUser, struct wl_registry *pRegistry, uint32_t uName, const char *sIface, uint32_t uVersion) 542 542 { … … 565 565 * @param uName Numeric name of the global object. 566 566 */ 567 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_registry_global_remove_handler(567 static void vbcl_wayland_hlp_dcp_registry_global_remove_handler( 568 568 void *pvUser, struct wl_registry *pRegistry, uint32_t uName) 569 569 { … … 651 651 * @param sMimeType Mime-type of newly available clipboard data. 652 652 */ 653 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_data_control_offer_offer(653 static void vbcl_wayland_hlp_dcp_data_control_offer_offer( 654 654 void *pvUser, struct zwlr_data_control_offer_v1 *pOffer, const char *sMimeType) 655 655 { … … 877 877 * @param pOffer Wayland Data Control Offer object. 878 878 */ 879 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_data_device_data_offer(879 static void vbcl_wayland_hlp_dcp_data_device_data_offer( 880 880 void *pvUser, struct zwlr_data_control_device_v1 *pDevice, struct zwlr_data_control_offer_v1 *pOffer) 881 881 { … … 929 929 * @param pOffer Wayland Data Control Offer object. 930 930 */ 931 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_data_device_selection(931 static void vbcl_wayland_hlp_dcp_data_device_selection( 932 932 void *pvUser, struct zwlr_data_control_device_v1 *pDevice, struct zwlr_data_control_offer_v1 *pOffer) 933 933 { … … 966 966 * @param pOffer Wayland Data Control Offer object. 967 967 */ 968 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_data_device_primary_selection(968 static void vbcl_wayland_hlp_dcp_data_device_primary_selection( 969 969 void *pvUser, struct zwlr_data_control_device_v1 *pDevice, struct zwlr_data_control_offer_v1 *pOffer) 970 970 { … … 1001 1001 * @param fd A file descriptor to write clipboard content into. 1002 1002 */ 1003 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_data_source_send(1003 static void vbcl_wayland_hlp_dcp_data_source_send( 1004 1004 void *pvUser, struct zwlr_data_control_source_v1 *pDataSource, 1005 1005 const char *sMimeType, int32_t fd) … … 1036 1036 * @param pDataSource Wayland Data Control Source object. 1037 1037 */ 1038 static DECLCALLBACK(void)vbcl_wayland_hlp_dcp_data_source_cancelled(1038 static void vbcl_wayland_hlp_dcp_data_source_cancelled( 1039 1039 void *pvData, struct zwlr_data_control_source_v1 *pDataSource) 1040 1040 {
Note:
See TracChangeset
for help on using the changeset viewer.