desktop_helpers.h 313 B

123456789
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. #include "desktop.h"
  5. void desktop_helpers_emit_error_notification();
  6. void desktop_helpers_lock_system(Desktop* desktop, bool hard_lock);
  7. void desktop_helpers_unlock_system(Desktop* desktop);
  8. uint32_t desktop_helpers_get_pin_fail_timeout(uint32_t pin_fails);