diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2006-08-25 18:17:01 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil> | 2006-08-25 18:17:01 -0400 |
commit | 13c6713c82763a85c725c998b37ad02156d803ba (patch) | |
tree | c8a3c6c08607acda2d6178d3d8b3ce50b680e277 /Xext/xacestr.h | |
parent | 52ba722e4c89c052609b4fc62e965d92778aa2dd (diff) |
Add four new XACE hooks: auditing, key event notification, window init
Diffstat (limited to 'Xext/xacestr.h')
-rw-r--r-- | Xext/xacestr.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Xext/xacestr.h b/Xext/xacestr.h index a01bf4a2a..7114d066b 100644 --- a/Xext/xacestr.h +++ b/Xext/xacestr.h @@ -112,4 +112,24 @@ typedef struct { XID authId; } XaceAuthAvailRec; +/* XACE_KEY_AVAIL */ +typedef struct { + xEventPtr event; + DeviceIntPtr keybd; + int count; +} XaceKeyAvailRec; + +/* XACE_WINDOW_INIT */ +typedef struct { + ClientPtr client; + WindowPtr pWin; +} XaceWindowRec; + +/* XACE_AUDIT_BEGIN */ +/* XACE_AUDIT_END */ +typedef struct { + ClientPtr client; + int requestResult; +} XaceAuditRec; + #endif /* _XACESTR_H */ |