mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 11:13:50 +00:00
This commit is contained in:
parent
c43e39205f
commit
1c5ace1e7f
15 changed files with 179 additions and 34 deletions
18
profile/3.3.5a-windows-386/include/bc/debug/errorstack.h
Normal file
18
profile/3.3.5a-windows-386/include/bc/debug/errorstack.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef BC_DEBUG_ERROR_STACK_H
|
||||
#define BC_DEBUG_ERROR_STACK_H
|
||||
|
||||
DECLARE_STRUCT(Blizzard__Debug__ErrorStackRecord);
|
||||
|
||||
typedef Blizzard__Debug__ErrorStackRecord* Blizzard__Debug__ErrorStack;
|
||||
|
||||
struct Blizzard__Debug__ErrorStackRecord {
|
||||
Blizzard__Debug__ErrorStackRecord* prev;
|
||||
//
|
||||
int32_t level;
|
||||
char* flattened;
|
||||
char* str_;
|
||||
int32_t code_;
|
||||
int32_t category_;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue