Changeset 93380 in vbox
- Timestamp:
- Jan 20, 2022 7:06:55 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149469
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-drm.cpp
r93378 r93380 703 703 * 704 704 * @return IPRT status code. 705 * @param pClient Client connection information to add to the list.705 * @param pClientNode Client connection information to add to the list. 706 706 */ 707 707 static int vbDrmIpcClientsListAdd(PVBOX_DRMIPC_CLIENT_CONNECTION_LIST_NODE pClientNode) … … 733 733 * 734 734 * @return IPRT status code. 735 * @param pClient Client connection information to remove from the list.735 * @param pClientNode Client connection information to remove from the list. 736 736 */ 737 737 static int vbDrmIpcClientsListRemove(PVBOX_DRMIPC_CLIENT_CONNECTION_LIST_NODE pClientNode) -
trunk/src/VBox/Additions/x11/VBoxClient/display-helper-generic.cpp
r93379 r93380 69 69 * @return TRUE if first name should go first in a list, FALSE otherwise. 70 70 * @param pszName1 First monitor name. 71 * @param pszName 1Second monitor name.71 * @param pszName2 Second monitor name. 72 72 */ 73 73 static bool vbcl_hlp_generic_order_names(char *pszName1, char *pszName2) -
trunk/src/VBox/Additions/x11/VBoxClient/display-helper-gnome3.cpp
r93379 r93380 141 141 * 142 142 * @return True if message signature matches to given one. 143 * @param iterD-bus message to check.143 * @param message D-bus message to check. 144 144 * @param signature Expected message signature. 145 145 */ -
trunk/src/VBox/Additions/x11/VBoxClient/display-helper.h
r93375 r93380 112 112 * Subscribe to display offset change notifications emitted by Generic Desktop Environment helper. 113 113 * 114 * @returns IPRT status code.115 114 * @param pfnCb A pointer to callback function which will be triggered when event arrives. 116 115 */ … … 119 118 /** 120 119 * Unsubscribe from display offset change notifications emitted by Generic Desktop Environment helper. 121 *122 * @returns IPRT status code.123 120 */ 124 121 RTDECL(void) vbcl_hlp_generic_unsubscribe_display_offset_changed(void); -
trunk/src/VBox/Additions/x11/VBoxClient/display-ipc.cpp
r93369 r93380 69 69 * @param hClientSession IPC session handle obtained from RTLocalIpcSessionXXX(). 70 70 * @param cTxListCapacity Maximum number of messages which can be queued for TX for this IPC session. 71 * @param pfn CbIPC RX callback function pointer.71 * @param pfnRxCb IPC RX callback function pointer. 72 72 */ 73 73 RTDECL(int) vbDrmIpcClientInit(PVBOX_DRMIPC_CLIENT pClient, RTTHREAD hThread, RTLOCALIPCSESSION hClientSession, -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-session.cpp
r93378 r93380 88 88 * @returns IPRT status code. 89 89 * @param cDisplays Number of displays which have changed offset. 90 * @param p DisplaysDisplay data.90 * @param paDisplays Display data. 91 91 */ 92 92 static DECLCALLBACK(int) vbclSVGASessionDisplayOffsetChanged(uint32_t cOffsets, RTPOINT *paOffsets)
Note:
See TracChangeset
for help on using the changeset viewer.