Changeset 94427 in vbox
- Timestamp:
- Mar 31, 2022 11:58:08 PM (3 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-helper-generic.cpp
r94076 r94427 362 362 } 363 363 364 /**365 * @interface_method_impl{VBCLDISPLAYHELPER,pfnInit}366 */367 364 RTDECL(int) vbcl_hlp_generic_init(void) 368 365 { … … 376 373 } 377 374 378 /**379 * @interface_method_impl{VBCLDISPLAYHELPER,pfnTerm}380 */381 375 RTDECL(int) vbcl_hlp_generic_term(void) 382 376 { … … 395 389 } 396 390 397 /**398 * @interface_method_impl{VBCLDISPLAYHELPER,pfnSubscribeDisplayOffsetChangeNotification}399 */400 391 RTDECL(void) vbcl_hlp_generic_subscribe_display_offset_changed(FNDISPLAYOFFSETCHANGE *pfnCb) 401 392 { … … 403 394 } 404 395 405 /**406 * @interface_method_impl{VBCLDISPLAYHELPER,pfnUnsubscribeDisplayOffsetChangeNotification}407 */408 396 RTDECL(void) vbcl_hlp_generic_unsubscribe_display_offset_changed(void) 409 397 { -
trunk/src/VBox/Additions/x11/VBoxClient/display-ipc.cpp
r94076 r94427 207 207 } 208 208 209 /**210 * Verify if remote IPC peer process is running by user from allowed group.211 *212 * @return IPRT status code.213 * @param hClientSession IPC session handle.214 */215 209 RTDECL(int) vbDrmIpcAuth(RTLOCALIPCSESSION hClientSession) 216 210 { … … 248 242 } 249 243 250 /**251 * Request remote IPC peer to set primary display (called by IPC server).252 *253 * @return IPRT status code.254 * @param pClient IPC session private data.255 * @param idDisplay ID of display to be set as primary.256 */257 244 RTDECL(int) vbDrmIpcSetPrimaryDisplay(PVBOX_DRMIPC_CLIENT pClient, uint32_t idDisplay) 258 245 {
Note:
See TracChangeset
for help on using the changeset viewer.