mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-04-29 12:43:51 +00:00
chore(error): support different era args for SErrDisplayError
This commit is contained in:
parent
b69feaca30
commit
b292aabac0
6 changed files with 19 additions and 9 deletions
|
|
@ -18,7 +18,12 @@
|
|||
|
||||
[[noreturn]] void STORMCDECL SErrDisplayAppFatal(const char* format, ...);
|
||||
|
||||
int32_t STORMAPI SErrDisplayError(uint32_t errorcode, const char* filename, int32_t linenumber, const char* description, int32_t recoverable, uint32_t exitcode, uint32_t a7);
|
||||
|
||||
#ifdef WHOA_DISPLAY_ERR_EXTRA_ARG
|
||||
int32_t STORMAPI SErrDisplayError(uint32_t errorcode, const char* filename, int32_t linenumber, const char* description, int32_t recoverable, uint32_t exitcode, uint32_t a7 = 0x11111111);
|
||||
#else
|
||||
int32_t STORMAPI SErrDisplayError(uint32_t errorcode, const char* filename, int32_t linenumber, const char* description, int32_t recoverable, uint32_t exitcode);
|
||||
#endif
|
||||
|
||||
int32_t STORMCDECL SErrDisplayErrorFmt(uint32_t errorcode, const char* filename, int32_t linenumber, int32_t recoverable, uint32_t exitcode, const char* format, ...);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue