blob: 80abc3455c20897742f038a098a5c94573d1f2df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef RVL_SDK_OS_STATE_FLAGS_H
#define RVL_SDK_OS_STATE_FLAGS_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OSStateFlags {
u32 checksum; // at 0x0
u8 BYTE_0x4;
u8 BYTE_0x5; // at 0x5
u8 discState; // at 0x6
u8 BYTE_0x7;
u32 WORD_0x8;
u32 WORD_0xC;
u32 WORD_0x10;
u32 WORD_0x14;
u32 WORD_0x18;
u32 WORD_0x1C;
} OSStateFlags;
BOOL __OSWriteStateFlags(const OSStateFlags *state);
BOOL __OSReadStateFlags(OSStateFlags *state);
#ifdef __cplusplus
}
#endif
#endif
|