feat(profile): more symbols

This commit is contained in:
phaneron 2025-04-15 20:44:29 -04:00
parent ea452811d6
commit 0d8380a6a5
19 changed files with 355 additions and 101 deletions

View file

@ -21,11 +21,15 @@ struct CSBasePriority {
#define STORM_TS_TIMER_PRIORITY(T) \
typedef struct TSTimerPriority_##T TSTimerPriority_##T; \
struct TSTimerPriority_##T { \
void** v_table; \
CSBasePriority b_base; \
T m_val; \
}
#define STORM_TS_PRIORITY_QUEUE(T) \
typedef CSBasePriorityQueue TSPriorityQueue_##T
typedef struct TSPriorityQueue_##T TSPriorityQueue_##T; \
struct TSPriorityQueue_##T { \
CSBasePriority b_base; \
}
#endif