RetroArch
sys_state.h
Go to the documentation of this file.
1 #ifndef __SYS_STATE_H__
2 #define __SYS_STATE_H__
3 
4 #define SYS_STATE_BEFORE_INIT 0
5 #define SYS_STATE_BEFORE_MT 1
6 #define SYS_STATE_BEGIN_MT 2
7 #define SYS_STATE_UP 3
8 #define SYS_STATE_SHUTDOWN 4
9 #define SYS_STATE_FAILED 5
10 
11 #include <gctypes.h>
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 extern u32 _sys_state_curr;
18 
19 #ifdef LIBOGC_INTERNAL
20 #include <libogc/sys_state.inl>
21 #endif
22 
23 #ifdef __cplusplus
24  }
25 #endif
26 
27 #endif
Data type definitions.
u32 _sys_state_curr
Definition: sys_state.c:3
uint32_t u32
32bit unsigned integer
Definition: gctypes.h:19