You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
268 B
18 lines
268 B
#pragma once
|
|
#include <stdbool.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
bool fatalFlag;
|
|
} zbase_gstate_t;
|
|
|
|
zbase_gstate_t* zbase_gstate_get();
|
|
|
|
void zbase_gstate_set_fatal_flag();
|
|
void zbase_gstate_clear_fatal_flag();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|