forked from electro/esp-irblaster
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.
18 lines
327 B
18 lines
327 B
3 years ago
|
/**
|
||
|
* TODO file description
|
||
|
*
|
||
|
* Created on 2020/04/02.
|
||
|
*/
|
||
|
|
||
|
#ifndef CSPEMU_SHUTDOWN_HANDLERS_H
|
||
|
#define CSPEMU_SHUTDOWN_HANDLERS_H
|
||
|
|
||
|
#include "esp_err.h"
|
||
|
#include "esp_system.h"
|
||
|
|
||
|
esp_err_t cspemu_add_shutdown_handler(shutdown_handler_t handler);
|
||
|
|
||
|
void cspemu_run_shutdown_handlers(void);
|
||
|
|
||
|
#endif //CSPEMU_SHUTDOWN_HANDLERS_H
|