diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-08-16 10:44:51 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-08-16 10:44:51 -0400 |
commit | 5bee8db003a5d552ee1d85bb6c40a3cb93bd6b2b (patch) | |
tree | d0f767f17e637c9e42d7985ce1b896931bdc33f4 /Xext/xacestr.h | |
parent | b82557c9fb60f11fd2696c8fb2ae17b9dfd915ed (diff) |
xace: drop background-none checking hook, add new hook for controlling
access to other clients.
Diffstat (limited to 'Xext/xacestr.h')
-rw-r--r-- | Xext/xacestr.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Xext/xacestr.h b/Xext/xacestr.h index e4db3a12c..10c625b18 100644 --- a/Xext/xacestr.h +++ b/Xext/xacestr.h @@ -71,13 +71,20 @@ typedef struct { } XaceDrawableAccessRec; /* XACE_MAP_ACCESS */ -/* XACE_BACKGRND_ACCESS */ typedef struct { ClientPtr client; WindowPtr pWin; int status; } XaceMapAccessRec; +/* XACE_CLIENT_ACCESS */ +typedef struct { + ClientPtr client; + ClientPtr target; + Mask access_mode; + int status; +} XaceClientAccessRec; + /* XACE_EXT_DISPATCH */ /* XACE_EXT_ACCESS */ typedef struct { |