Changeset 86873 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Nov 12, 2020 10:30:55 AM (4 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r86871 r86873 440 440 #endif /* VBOX_WITH_SHARED_CLIPBOARD_FUSE */ 441 441 442 /** @copydoc VBCLSERVICE::pfnInit */ 443 static int vbclShClInit(void) 442 /** 443 * @interface_method_impl{VBCLSERVICE,pfnInit} 444 */ 445 static DECLCALLBACK(int) vbclShClInit(void) 444 446 { 445 447 int rc; … … 455 457 } 456 458 457 /** @copydoc VBCLSERVICE::pfnWorker */ 458 static int vbclShClWorker(bool volatile *pfShutdown) 459 /** 460 * @interface_method_impl{VBCLSERVICE,pfnWorker} 461 */ 462 static DECLCALLBACK(int) vbclShClWorker(bool volatile *pfShutdown) 459 463 { 460 464 RT_NOREF(pfShutdown); … … 491 495 } 492 496 493 /** @copydoc VBCLSERVICE::pfnStop */ 494 static void vbclShClStop(void) 497 /** 498 * @interface_method_impl{VBCLSERVICE,pfnStop} 499 */ 500 static DECLCALLBACK(void) vbclShClStop(void) 495 501 { 496 502 /* Disconnect from the host service. … … 500 506 } 501 507 502 /** @copydoc VBCLSERVICE::pfnTerm */ 503 static int vbclShClTerm(void) 508 /** 509 * @interface_method_impl{VBCLSERVICE,pfnTerm} 510 */ 511 static DECLCALLBACK(int) vbclShClTerm(void) 504 512 { 505 513 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r86871 r86873 760 760 } 761 761 762 /** @copydoc VBCLSERVICE::pfnInit */ 763 static int vbclSVGAInit(void) 762 /** 763 * @interface_method_impl{VBCLSERVICE,pfnInit} 764 */ 765 static DECLCALLBACK(int) vbclSVGAInit(void) 764 766 { 765 767 /* In 32-bit guests GAs build on our release machines causes an xserver hang. … … 789 791 } 790 792 791 /** @copydoc VBCLSERVICE::pfnStop */ 792 static void vbclSVGAStop(void) 793 /** 794 * @interface_method_impl{VBCLSERVICE,pfnStop} 795 */ 796 static DECLCALLBACK(void) vbclSVGAStop(void) 793 797 { 794 798 if (mpMonitorPositions) … … 1342 1346 } 1343 1347 1344 static int vbclSVGAWorker(bool volatile *pfShutdown) 1348 /** 1349 * @interface_method_impl{VBCLSERVICE,pfnWorker} 1350 */ 1351 static DECLCALLBACK(int) vbclSVGAWorker(bool volatile *pfShutdown) 1345 1352 { 1346 1353 RT_NOREF(pfShutdown); -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r86871 r86873 3556 3556 return rc; 3557 3557 } 3558 /** @copydoc VBCLSERVICE::pfnInit */ 3559 static int vbclDnDInit(void) 3558 /** 3559 * @interface_method_impl{VBCLSERVICE,pfnInit} 3560 */ 3561 static DECLCALLBACK(int) vbclDnDInit(void) 3560 3562 { 3561 3563 return g_Svc.init(); 3562 3564 } 3563 3565 3564 /** @copydoc VBCLSERVICE::pfnWorker */ 3565 static int vbclDnDWorker(bool volatile *pfShutdown) 3566 /** 3567 * @interface_method_impl{VBCLSERVICE,pfnWorker} 3568 */ 3569 static DECLCALLBACK(int) vbclDnDWorker(bool volatile *pfShutdown) 3566 3570 { 3567 3571 return g_Svc.worker(pfShutdown); 3568 3572 } 3569 3573 3570 /** @copydoc VBCLSERVICE::pfnStop */ 3571 static void vbclDnDStop(void) 3574 /** 3575 * @interface_method_impl{VBCLSERVICE,pfnStop} 3576 */ 3577 static DECLCALLBACK(void) vbclDnDStop(void) 3572 3578 { 3573 3579 g_Svc.stop(); 3574 3580 } 3575 3581 3576 /** @copydoc VBCLSERVICE::pfnTerm */ 3577 static int vbclDnDTerm(void) 3582 /** 3583 * @interface_method_impl{VBCLSERVICE,pfnTerm} 3584 */ 3585 static DECLCALLBACK(int) vbclDnDTerm(void) 3578 3586 { 3579 3587 return g_Svc.term(); -
trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
r86871 r86873 117 117 } 118 118 119 /** @copydoc VBCLSERVICE::pfnWorker */ 119 /** 120 * @interface_method_impl{VBCLSERVICE,pfnWorker} 121 */ 120 122 /** @todo Move this part in VbglR3 and just provide a callback for the platform-specific 121 123 notification stuff, since this is very similar to the VBoxTray code. */ 122 static intvbclHostVerWorker(bool volatile *pfShutdown)124 static DECLCALLBACK(int) vbclHostVerWorker(bool volatile *pfShutdown) 123 125 { 124 126 RT_NOREF(pfShutdown); -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r86871 r86873 315 315 } 316 316 317 /** @copydoc VBCLSERVICE::pfnInit */ 318 static int vbclSeamlessInit(void) 317 /** 318 * @interface_method_impl{VBCLSERVICE,pfnInit} 319 */ 320 static DECLCALLBACK(int) vbclSeamlessInit(void) 319 321 { 320 322 return g_Svc.mSeamless.init(); 321 323 } 322 324 323 /** @copydoc VBCLSERVICE::pfnWorker */ 324 static int vbclSeamlessWorker(bool volatile *pfShutdown) 325 /** 326 * @interface_method_impl{VBCLSERVICE,pfnWorker} 327 */ 328 static DECLCALLBACK(int) vbclSeamlessWorker(bool volatile *pfShutdown) 325 329 { 326 330 return g_Svc.mSeamless.worker(pfShutdown); 327 331 } 328 332 329 /** @copydoc VBCLSERVICE::pfnStop */ 330 static void vbclSeamlessStop(void) 333 /** 334 * @interface_method_impl{VBCLSERVICE,pfnStop} 335 */ 336 static DECLCALLBACK(void) vbclSeamlessStop(void) 331 337 { 332 338 return g_Svc.mSeamless.stop(); 333 339 } 334 340 335 /** @copydoc VBCLSERVICE::pfnTerm */ 336 static int vbclSeamlessTerm(void) 341 /** 342 * @interface_method_impl{VBCLSERVICE,pfnTerm} 343 */ 344 static DECLCALLBACK(int) vbclSeamlessTerm(void) 337 345 { 338 346 return g_Svc.mSeamless.term();
Note:
See TracChangeset
for help on using the changeset viewer.