chore(style): clean up line endings in event

This commit is contained in:
fallenoak 2025-11-20 21:36:18 -06:00
parent 4c8fc4e7a9
commit be1ab67257
2 changed files with 445 additions and 450 deletions

View file

@ -8,7 +8,6 @@
#include "Error.hpp"
#include "Memory.hpp"
struct BREAKCMD : public TSLinkedNode<BREAKCMD> {
void* data;
};
@ -18,7 +17,6 @@ static TSList<BREAKCMD, TSGetLink<BREAKCMD>> s_breakcmdlist;
static int32_t s_modified;
static ATOMIC32 s_dispatchesinprogress;
struct _IDHASHENTRY {
uint32_t id;
uint32_t sequence;

View file

@ -4,10 +4,8 @@
#include <cstdint>
#include "Core.hpp"
typedef void (STORMAPI* SEVTHANDLER)(void*);
int32_t STORMAPI SEvtBreakHandlerChain(void* data);
int32_t STORMAPI SEvtDestroy();
@ -24,5 +22,4 @@ int32_t STORMAPI SEvtUnregisterHandler(uint32_t type, uint32_t subtype, uint32_t
int32_t STORMAPI SEvtUnregisterType(uint32_t type, uint32_t subtype);
#endif