12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef ZEPHYR_SUBSYS_PM_PRIV_H_
- #define ZEPHYR_SUBSYS_PM_PRIV_H_
- #include <pm/pm.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- int pm_suspend_devices(void);
- int pm_low_power_devices(void);
- int pm_force_suspend_devices(void);
- void pm_resume_devices(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|