FreeCalypso > hg > fc-tourmaline
diff src/cs/services/fcbm/fcbm_life_cycle.h @ 230:baa738eeb842
FCBM code implemented in first pass
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 01 May 2021 10:05:53 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cs/services/fcbm/fcbm_life_cycle.h Sat May 01 10:05:53 2021 +0000 @@ -0,0 +1,16 @@ +/* + * FCBM life cycle state definitions + */ + +#ifndef __FCBM_LIFE_CYCLE_H +#define __FCBM_LIFE_CYCLE_H + +enum fcbm_life_cycle_state { + FCBM_STATE_INACTIVE = 0, + FCBM_STATE_ACTIVE, + FCBM_STATE_PHONE_ON +}; + +extern enum fcbm_life_cycle_state fcbm_life_cycle_state; + +#endif