mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): update 3.3.5a profile
This commit is contained in:
parent
9053d61b6b
commit
e1bab2b375
186 changed files with 1204 additions and 43942 deletions
27
profile/3.3.5a-windows-386/include/storm/big.h
Normal file
27
profile/3.3.5a-windows-386/include/storm/big.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#ifndef STORM_BIG_H
|
||||
#define STORM_BIG_H
|
||||
|
||||
DECLARE_STRUCT(BigData);
|
||||
DECLARE_STRUCT(BigBuffer);
|
||||
DECLARE_STRUCT(BigStack);
|
||||
|
||||
#include "storm/array/uint8_t.h"
|
||||
#include "storm/array/uint32_t.h"
|
||||
|
||||
struct BigBuffer {
|
||||
TSGrowableArray_uint32_t m_data;
|
||||
uint32_t m_offset;
|
||||
};
|
||||
|
||||
struct BigStack {
|
||||
BigBuffer m_buffer[16];
|
||||
uint32_t m_used;
|
||||
};
|
||||
|
||||
struct BigData {
|
||||
BigBuffer m_primary;
|
||||
BigStack m_stack;
|
||||
TSGrowableArray_uint8_t m_output;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue