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.

7 lines
237 B

  1. #include "zbase_gstate.h"
  2. zbase_gstate_t gstate;
  3. zbase_gstate_t* zbase_gstate_get() { return &gstate; }
  4. void zbase_gstate_set_fatal_flag() { gstate.fatalFlag = true; }
  5. void zbase_gstate_clear_fatal_flag() { gstate.fatalFlag = false; }