diff options
author | Adam Jackson <ajax@redhat.com> | 2016-07-19 10:03:56 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-07-19 10:09:33 -0400 |
commit | b99390efcb55d7d4a68e8c595119c1af4426fc0b (patch) | |
tree | 62f22e19f0d8d64c281fd019c2dd2735edb26c6b | |
parent | 278042ff4c469f24ab7bc28e517e8a78e2821ddc (diff) |
Adapt Block/WakeupHandler signature for ABI 23
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | src/compat-api.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/compat-api.h b/src/compat-api.h index 98ba435..44daea4 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -78,11 +78,19 @@ #define SCREEN_INIT_ARGS_DECL ScreenPtr pScreen, int argc, char **argv +#if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(23, 0) +#define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout +#define BLOCKHANDLER_ARGS arg, pTimeout + +#define WAKEUPHANDLER_ARGS_DECL ScreenPtr arg, unsigned long result +#define WAKEUPHANDLER_ARGS arg, result +#else #define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout, pointer pReadmask #define BLOCKHANDLER_ARGS arg, pTimeout, pReadmask #define WAKEUPHANDLER_ARGS_DECL ScreenPtr arg, unsigned long result, pointer read_mask #define WAKEUPHANDLER_ARGS arg, result, read_mask +#endif #define CLOSE_SCREEN_ARGS_DECL ScreenPtr pScreen #define CLOSE_SCREEN_ARGS pScreen |