| 254 | } |
| 255 | |
| 256 | void LightEvent_Init(LightEvent* event, ResetType reset_type) |
| 257 | { |
| 258 | LightLock_Init(&event->lock); |
| 259 | LightEvent_SetState(event, reset_type == RESET_STICKY ? CLEARED_STICKY : CLEARED_ONESHOT); |
| 260 | } |
| 261 | |
| 262 | void LightEvent_Clear(LightEvent* event) |
| 263 | { |
no test coverage detected