Changeset 57357 in vbox for trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
- Timestamp:
- Aug 14, 2015 3:04:46 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102120
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r55401 r57357 51 51 /** Run the service main loop */ 52 52 int (*run)(struct VBCLSERVICE **ppInterface, bool fDaemonised); 53 /** Pause the service loop. This is used to allow the service to disable54 * itself when the X server is switched out. It must be safe to call on a55 * different thread if the VT monitoring thread is used. */56 int (*pause)(struct VBCLSERVICE **ppInterface);57 /** Resume after pausing. The same applies here as for @a pause. */58 int (*resume)(struct VBCLSERVICE **ppInterface);59 53 /** Clean up any global resources before we shut down hard. The last calls 60 54 * to @a pause and @a resume are guaranteed to finish before this is called. … … 77 71 } 78 72 79 union _XEvent; /* We do not want to pull in the X11 header files here. */80 extern void VBClCheckXOrgVT(union _XEvent *pEvent);81 extern int VBClStartVTMonitor();82 83 73 extern struct VBCLSERVICE **VBClGetClipboardService(); 84 74 extern struct VBCLSERVICE **VBClGetSeamlessService();
Note:
See TracChangeset
for help on using the changeset viewer.