feat(profile): add log symbols

This commit is contained in:
phaneron 2025-04-14 16:48:15 -04:00
parent ee1379979e
commit c47a94b7fd
22 changed files with 252 additions and 24 deletions

View file

@ -4,5 +4,19 @@
#include "common/handle.h"
DECLARE_HANDLE(HSLOG);
DECLARE_STRUCT(LOG);
struct LOG {
HSLOG log;
LOG* next;
char filename[260];
void* file;
uint32_t flags;
size_t bufferused;
size_t pendpoint;
int32_t indent;
int32_t timeStamp;
char buffer[0x10000];
};
#endif