diff options
author | Kevin E Martin <kem@kem.org> | 2004-07-31 04:23:21 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2004-07-31 04:23:21 +0000 |
commit | 25bd6ff4a622d09fb0c247b7c40281744c61431e (patch) | |
tree | 7ae6338cd31a4e6134195ace92de42e075abdad3 /include | |
parent | 326729ebca863c99cf913445126294a3c6d3db5d (diff) |
Add new extension enable/disable feature. This code is a small step in the
right direction -- i.e., moving towards full run-time config of
extensions. Currently, only XTEST, XINERAMA, RENDER, XKB, and XEVIE are
supported.
Diffstat (limited to 'include')
-rw-r--r-- | include/globals.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/globals.h b/include/globals.h index 359f2eee2..1a22bb6f9 100644 --- a/include/globals.h +++ b/include/globals.h @@ -1,4 +1,4 @@ -/* $XdotOrg$ */ +/* $XdotOrg: xc/programs/Xserver/include/globals.h,v 1.2 2004/04/23 19:54:23 eich Exp $ */ /* $XFree86: xc/programs/Xserver/include/globals.h,v 1.3 1999/09/25 14:38:21 dawes Exp $ */ #ifndef _XSERV_GLOBAL_H_ @@ -49,5 +49,12 @@ extern Bool PanoramiXWindowExposureSent; extern Bool PanoramiXOneExposeRequest; #endif +#ifdef RENDER +extern Bool noRenderExtension; +#endif + +#ifdef XEVIE +extern Bool noXevieExtension; +#endif #endif /* _XSERV_GLOBAL_H_ */ |