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

  1. #pragma once
  2. #include <stdbool.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef struct {
  7. bool fatalFlag;
  8. } zbase_gstate_t;
  9. zbase_gstate_t* zbase_gstate_get();
  10. void zbase_gstate_set_fatal_flag();
  11. void zbase_gstate_clear_fatal_flag();
  12. #ifdef __cplusplus
  13. }
  14. #endif