mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): add log symbols
This commit is contained in:
parent
ee1379979e
commit
c47a94b7fd
22 changed files with 252 additions and 24 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue