diff options
author | Eamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil> | 2006-07-31 19:35:08 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil> | 2006-07-31 19:35:08 -0400 |
commit | b04d64854712678701d5243aacf5cc93444cfadc (patch) | |
tree | b8a453d1842923dd3253f23dd3157e5c96a3b249 /include | |
parent | c0cb8d1fb80540e093da54da3ee2f55bdf139274 (diff) |
Added devPrivates support to the ExtensionEntry structure.
Diffstat (limited to 'include')
-rw-r--r-- | include/extension.h | 2 | ||||
-rw-r--r-- | include/extnsionst.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/extension.h b/include/extension.h index 613076dea..c3d7c2183 100644 --- a/include/extension.h +++ b/include/extension.h @@ -60,6 +60,8 @@ extern Bool EnableDisableExtension(char *name, Bool enable); extern void EnableDisableExtensionError(char *name, Bool enable); +extern void ResetExtensionPrivates(void); + extern void InitExtensions(int argc, char **argv); extern void InitVisualWrap(void); diff --git a/include/extnsionst.h b/include/extnsionst.h index a86e52cbf..35aa97e1a 100644 --- a/include/extnsionst.h +++ b/include/extnsionst.h @@ -50,6 +50,7 @@ SOFTWARE. #ifndef EXTENSIONSTRUCT_H #define EXTENSIONSTRUCT_H +#include "dix.h" #include "misc.h" #include "screenint.h" #include "extension.h" @@ -70,6 +71,7 @@ typedef struct _ExtensionEntry { pointer extPrivate; unsigned short (* MinorOpcode)( /* called for errors */ ClientPtr /* client */); + DevUnion *devPrivates; #ifdef XACE pointer securityState[4]; /* 4 slots for use */ #endif |