diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-10-29 16:45:40 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-10-29 16:45:40 +0000 |
commit | 82c8483383b5fc4e0570c6008130333f5f9bb46b (patch) | |
tree | 116d610f341a4415c5a44542113886a7fbb54549 /xserver/present/present_priv.h | |
parent | 984c9a86a344c3d6b5951ad1e8733bd3c5c1c9f7 (diff) |
Update to xserver 21.1.9.
All the security patches have already been committed.
Udated autoconf to 2.71 explains the large build infrastructure diff.
Diffstat (limited to 'xserver/present/present_priv.h')
-rw-r--r-- | xserver/present/present_priv.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xserver/present/present_priv.h b/xserver/present/present_priv.h index 6ebd009a2..4ad729864 100644 --- a/xserver/present/present_priv.h +++ b/xserver/present/present_priv.h @@ -43,6 +43,11 @@ #define DebugPresent(x) #endif +/* XXX this belongs in presentproto */ +#ifndef PresentWindowDestroyed +#define PresentWindowDestroyed (1 << 0) +#endif + extern int present_request; extern DevPrivateKeyRec present_screen_private_key; @@ -307,7 +312,7 @@ void present_free_events(WindowPtr window); void -present_send_config_notify(WindowPtr window, int x, int y, int w, int h, int bw, WindowPtr sibling); +present_send_config_notify(WindowPtr window, int x, int y, int w, int h, int bw, WindowPtr sibling, CARD32 flags); void present_send_complete_notify(WindowPtr window, CARD8 kind, CARD8 mode, CARD32 serial, uint64_t ust, uint64_t msc); |