diff libmlk-core/mlk/core/script.h @ 450:b26dd49f69ff

core: event -> mlk_event (and friends)
author David Demelier <markand@malikania.fr>
date Sat, 18 Feb 2023 13:37:11 +0100
parents 773a082f0b91
children 5729efd23286
line wrap: on
line diff
--- a/libmlk-core/mlk/core/script.h	Sat Feb 18 13:16:40 2023 +0100
+++ b/libmlk-core/mlk/core/script.h	Sat Feb 18 13:37:11 2023 +0100
@@ -27,7 +27,7 @@
 
 struct mlk_action;
 
-union event;
+union mlk_event;
 
 struct script {
 	struct mlk_action *actions[SCRIPT_ACTION_MAX];
@@ -44,7 +44,7 @@
 script_append(struct script *, struct mlk_action *);
 
 void
-script_handle(struct script *, const union event *);
+script_handle(struct script *, const union mlk_event *);
 
 int
 script_update(struct script *, unsigned int);