binana/profile/3.3.5a-windows-386/include/gx/emergencymem.h

13 lines
201 B
C
Raw Normal View History

2025-04-20 15:54:44 -04:00
#ifndef GX_EMERGENCY_MEM_H
#define GX_EMERGENCY_MEM_H
2025-04-29 16:26:36 -04:00
#include "storm/array/uint8_t.h"
2025-04-20 15:54:44 -04:00
DECLARE_STRUCT(EmergencyMem);
struct EmergencyMem {
2025-04-29 16:26:36 -04:00
TSGrowableArray_uint8_t m_data;
2025-04-29 16:30:28 -04:00
bool m_lock;
2025-04-20 15:54:44 -04:00
};
#endif