mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-29 07:16:05 +03:00
15 lines
355 B
C++
15 lines
355 B
C++
#ifndef EVENT_QUEUE_HPP
|
|
#define EVENT_QUEUE_HPP
|
|
|
|
#include "event/Types.hpp"
|
|
|
|
class EvtContext;
|
|
|
|
void IEvtQueueDispatch(EvtContext* context, EVENTID id, const void* data);
|
|
|
|
void IEvtQueueDispatchAll(EvtContext* context);
|
|
|
|
void IEvtQueueRegister(EvtContext* context, EVENTID id, int32_t (*handler)(const void*, void*), void* param, float priority);
|
|
|
|
#endif
|