diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2020-01-16 22:50:18 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2020-04-07 13:53:01 +0200 |
commit | 46ec003667487d244828babe43884555fbe7322b (patch) | |
tree | d30985606bd6e255213e25ff5f60f140e64fbe40 /nx-X11/programs/Xserver/hw/nxagent/Init.h | |
parent | 82fc54e577c56ee3952f14c4a5c9f50c16645591 (diff) | |
download | nx-libs-46ec003667487d244828babe43884555fbe7322b.tar.gz nx-libs-46ec003667487d244828babe43884555fbe7322b.tar.bz2 nx-libs-46ec003667487d244828babe43884555fbe7322b.zip |
nxagent: re-implement timeout handling
Option -timeout used the screensaver facility. This patch changes that
to an own timer that is independent. This effectly means we can drop
most of the derived screensaving stuff in a follow-up commit.
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Init.h')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Init.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Init.h b/nx-X11/programs/Xserver/hw/nxagent/Init.h index 246f600cf..6fa1bedd7 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Init.h +++ b/nx-X11/programs/Xserver/hw/nxagent/Init.h @@ -52,4 +52,8 @@ extern ServerGrabInfoRec nxagentGrabServerInfo; void nxagentNotifyConnection(int fd, int ready, void *data); +CARD32 nxagentTimeoutCallback(OsTimerPtr timer, CARD32 now, void *arg); +void nxagentSetTimeoutTimer(unsigned int millis); +void nxagentFreeTimeoutTimer(void); + #endif /* __Init_H__ */ |