diff options
Diffstat (limited to 'ui/input-linux.c')
-rw-r--r-- | ui/input-linux.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ui/input-linux.c b/ui/input-linux.c index 1b35c04..bfdbd38 100644 --- a/ui/input-linux.c +++ b/ui/input-linux.c @@ -33,12 +33,8 @@ static bool linux_is_button(unsigned int lnx) #define TYPE_INPUT_LINUX "input-linux" typedef struct InputLinux InputLinux; typedef struct InputLinuxClass InputLinuxClass; -#define INPUT_LINUX(obj) \ - OBJECT_CHECK(InputLinux, (obj), TYPE_INPUT_LINUX) -#define INPUT_LINUX_GET_CLASS(obj) \ - OBJECT_GET_CLASS(InputLinuxClass, (obj), TYPE_INPUT_LINUX) -#define INPUT_LINUX_CLASS(klass) \ - OBJECT_CLASS_CHECK(InputLinuxClass, (klass), TYPE_INPUT_LINUX) +DECLARE_OBJ_CHECKERS(InputLinux, InputLinuxClass, + INPUT_LINUX, TYPE_INPUT_LINUX) struct InputLinux { |