Changeset 53624 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Dec 31, 2014 2:59:44 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97393
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r53482 r53624 304 304 VBClServiceDefaultHandler, /* pause */ 305 305 VBClServiceDefaultHandler, /* resume */ 306 VBClServiceDefaultCleanup 306 VBClServiceDefaultCleanup 307 307 }; 308 308 -
trunk/src/VBox/Additions/x11/VBoxClient/display.cpp
r53552 r53624 319 319 struct DISPLAYSERVICE *pSelf = getClassFromInterface(ppInterface); 320 320 int rc; 321 321 322 322 if (pSelf->mfInit) 323 323 return VERR_WRONG_ORDER; … … 376 376 pause, 377 377 resume, 378 cleanup 378 cleanup 379 379 }; 380 380 -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r52562 r53624 2416 2416 VBClServiceDefaultHandler, /* pause */ 2417 2417 VBClServiceDefaultHandler, /* resume */ 2418 VBClServiceDefaultCleanup 2418 VBClServiceDefaultCleanup 2419 2419 }; 2420 2420 -
trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
r52562 r53624 204 204 VBClServiceDefaultHandler, /* pause */ 205 205 VBClServiceDefaultHandler, /* resume */ 206 VBClServiceDefaultCleanup 206 VBClServiceDefaultCleanup 207 207 }; 208 208 -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r53421 r53624 209 209 Display *pDisplay; 210 210 bool fHasVT = true; 211 211 212 212 pDisplay = XOpenDisplay(NULL); 213 213 if (!pDisplay) -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r52586 r53624 413 413 pause, 414 414 resume, 415 cleanup 415 cleanup 416 416 }; 417 417 -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.h
r52564 r53624 63 63 */ 64 64 int cancelEvent(void); 65 65 66 66 /** Thread function to monitor X11 window configuration changes. */ 67 67 static DECLCALLBACK(int) x11MonitorThread(RTTHREAD self, void *pvUser); … … 72 72 /** Helper to stop the X11 monitor thread again. */ 73 73 int stopX11MonitorThread(void); 74 74 75 75 /** Is the service currently actively monitoring X11 windows? */ 76 76 bool isX11MonitorThreadRunning() -
trunk/src/VBox/Additions/x11/vboxvideo/getmode.c
r53533 r53624 281 281 return; 282 282 } 283 #endif 283 #endif 284 284 /* We can get called early, before the root window is created. */ 285 285 if (!ROOT_WINDOW(pScrn))
Note:
See TracChangeset
for help on using the changeset viewer.