summaryrefslogtreecommitdiff
path: root/src/event.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/event.hpp')
-rw-r--r--src/event.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/event.hpp b/src/event.hpp
index 505d82a..b7a5ffa 100644
--- a/src/event.hpp
+++ b/src/event.hpp
@@ -10,8 +10,8 @@
typedef void (*EventHandler)();
-void RegisterCallback(const char *name, EventHandler handler);
-void UnregisterCallback(const char *name, EventHandler handler);
-void DispatchCabllack(const char *name);
+void Event_RegisterCallback(const char *name, EventHandler handler);
+void Event_UnregisterCallback(const char *name, EventHandler handler);
+void Event_Dispatch(const char *name);
#endif /* PKE_EVENT_HPP */