Changeset 101881 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Nov 6, 2023 4:29:36 PM (15 months ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/vboxwl.cpp
r101880 r101881 70 70 /** A session ID which will be specified in communication messages 71 71 * with VBoxClient instance. */ 72 static uint32_t g_uSessionId = 0; ;72 static uint32_t g_uSessionId = 0; 73 73 74 74 /** One-shot session type. */ -
trunk/src/VBox/Additions/x11/VBoxClient/wayland-helper-ipc.h
r101880 r101881 264 264 * 265 265 * @returns IPRT status code. 266 * @param flowPointer to selected IPC flow.266 * @param pFlow Pointer to selected IPC flow. 267 267 * @param hIpcSession IPC connection handle. 268 268 */ 269 int flow(const flow_t * flow, RTLOCALIPCSESSION hIpcSession)269 int flow(const flow_t *pFlow, RTLOCALIPCSESSION hIpcSession) 270 270 { 271 271 int idx = 0; … … 273 273 274 274 while ( RT_SUCCESS(rc) 275 && flow[idx].enmCmd != CMD_MAX)275 && pFlow[idx].enmCmd != CMD_MAX) 276 276 { 277 rc = select_fn( flow[idx].enmCmd, flow[idx].fDirection, hIpcSession);277 rc = select_fn(pFlow[idx].enmCmd, pFlow[idx].fDirection, hIpcSession); 278 278 idx++; 279 279 } -
trunk/src/VBox/Additions/x11/VBoxClient/wayland-helper.h
r101878 r101881 90 90 VBCL_WL_CLIPBOARD_SESSION_TYPE_ANNOUNCE_TO_HOST, 91 91 /** Copy clipboard data to the host. */ 92 VBCL_WL_CLIPBOARD_SESSION_TYPE_COPY_TO_HOST ,92 VBCL_WL_CLIPBOARD_SESSION_TYPE_COPY_TO_HOST 93 93 } vbcl_wl_session_type_t; 94 94
Note:
See TracChangeset
for help on using the changeset viewer.