mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(options): implement StormSetOption
This commit is contained in:
parent
09e7076a9b
commit
2ffa8217c0
4 changed files with 149 additions and 0 deletions
25
storm/option/Options.hpp
Normal file
25
storm/option/Options.hpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef STORM_OPTION_OPTIONS_HPP
|
||||
#define STORM_OPTION_OPTIONS_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
struct STORMOPTIONS {
|
||||
int32_t smemleaksilentwarning;
|
||||
int32_t serrleaksilentwarning;
|
||||
uint32_t wavechunksize;
|
||||
int32_t opt0C;
|
||||
int32_t opt10;
|
||||
int32_t opt14;
|
||||
int32_t opt18;
|
||||
int32_t opt1C;
|
||||
int32_t sregunicode;
|
||||
int32_t opt24;
|
||||
int32_t opt28;
|
||||
};
|
||||
|
||||
extern STORMOPTIONS g_opt;
|
||||
|
||||
extern uint32_t s_alloccount;
|
||||
extern uint32_t s_freecount;
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue