1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-18 21:13:38 +01:00
AIO-switch-updater/include/reboot_payload.h

19 lines
270 B
C
Raw Normal View History

2020-09-20 01:21:28 +01:00
#ifndef __REBOOT_PAYLOAD_H__
#define __REBOOT_PAYLOAD_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
2021-09-11 14:48:13 +01:00
#include <stdio.h>
#include <string.h>
2020-09-20 01:21:28 +01:00
#include <switch.h>
2021-06-17 21:40:54 +01:00
int reboot_to_payload(const char* path, bool legacy);
2020-09-20 01:21:28 +01:00
#ifdef __cplusplus
}
#endif
#endif