summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowitz@users.sourceforge.net>2009-10-15 01:53:43 -0500
committerKeith Packard <keithp@keithp.com>2009-10-15 08:06:53 -0700
commit9bc4e88d84daf0f4faf0599b575675e74c75f4b8 (patch)
tree7aef2628b3d0e05b4af8ced283e6d960613e6230 /include
parenta2f27b97900f335cd5f6a3e5bf8fa1d0ec9eb9ac (diff)
Define ddxBeforeReset stubs in platform-neutral DDXs
XWin uses ddxBeforeReset, which is called in DIX. Other DDXs need to define these in order to avoid an undefined symbol error at link time when building alongside XWin. Xnest and Xvfb already provide empty stubs; this does the same for Xdmx and the platform-neutral KDrive servers. Also add a prototype to avoid a warning in all DDXs. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'include')
-rw-r--r--include/os.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/os.h b/include/os.h
index 2f6b0c06f..dad1af787 100644
--- a/include/os.h
+++ b/include/os.h
@@ -83,6 +83,10 @@ typedef struct _NewClientRec *NewClientPtr;
#include <stdio.h>
#include <stdarg.h>
+#ifdef DDXBEFORERESET
+extern void ddxBeforeReset (void);
+#endif
+
#ifdef DDXOSVERRORF
extern _X_EXPORT void (*OsVendorVErrorFProc)(const char *, va_list args);
#endif