mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-22 20:35:43 +00:00
dix: reorganize property code to better support xace hook; requires new API for
changing a property, dixChangeWindowProperty, taking an additional client argument.
This commit is contained in:
parent
1b58304ac8
commit
1b766ffc06
5 changed files with 52 additions and 19 deletions
|
|
@ -52,6 +52,17 @@ SOFTWARE.
|
|||
|
||||
typedef struct _Property *PropertyPtr;
|
||||
|
||||
extern int dixChangeWindowProperty(
|
||||
ClientPtr /*pClient*/,
|
||||
WindowPtr /*pWin*/,
|
||||
Atom /*property*/,
|
||||
Atom /*type*/,
|
||||
int /*format*/,
|
||||
int /*mode*/,
|
||||
unsigned long /*len*/,
|
||||
pointer /*value*/,
|
||||
Bool /*sendevent*/);
|
||||
|
||||
extern int ChangeWindowProperty(
|
||||
WindowPtr /*pWin*/,
|
||||
Atom /*property*/,
|
||||
|
|
|
|||
Loading…
Reference in a new issue