mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
17 lines
No EOL
241 B
C
17 lines
No EOL
241 B
C
#ifndef STORM_THREAD_H
|
|
#define STORM_THREAD_H
|
|
|
|
#include "system/types.h"
|
|
|
|
DECLARE_STRUCT(SCritSect);
|
|
typedef struct CSRWLock CSRWLock;
|
|
|
|
struct SCritSect {
|
|
uint8_t m_critsect[24];
|
|
};
|
|
|
|
struct CSRWLock {
|
|
uint8_t m_opaqueData[12];
|
|
};
|
|
|
|
#endif |