Changeset 64326 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Oct 19, 2016 5:37:25 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxIPC.cpp
r64292 r64326 201 201 sizeof(szPipeName) - sizeof(VBOXTRAY_IPC_PIPE_PREFIX) + 1, 202 202 NULL /*pcbUser*/); 203 AssertRC(rc); 203 204 if (RT_SUCCESS(rc)) 204 205 { 205 206 rc = RTLocalIpcServerCreate(&pCtx->hServer, szPipeName, RTLOCALIPC_FLAGS_NATIVE_NAME); 207 AssertRC(rc); 206 208 if (RT_SUCCESS(rc)) 207 209 { … … 230 232 DECLCALLBACK(void) VBoxIPCStop(void *pInstance) 231 233 { 234 /* Can be NULL if VBoxIPCInit failed. */ 235 if (!pInstance) 236 return; 232 237 AssertPtrReturnVoid(pInstance); 233 238 -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTrayMsg.h
r62522 r64326 19 19 #define ___VBOXTRAY_MSG_H 20 20 21 /** The IPC pipe's prefix . Will be followed by the22 * username VBoxTray runs under. */23 #define VBOXTRAY_IPC_PIPE_PREFIX " VBoxTrayIPC-"21 /** The IPC pipe's prefix (native). 22 * Will be followed by the username VBoxTray runs under. */ 23 #define VBOXTRAY_IPC_PIPE_PREFIX "\\\\.\\pipe\\VBoxTrayIPC-" 24 24 /** The IPC header's magic. */ 25 25 #define VBOXTRAY_IPC_HDR_MAGIC 0x19840804
Note:
See TracChangeset
for help on using the changeset viewer.