1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2025-02-01 14:25:03 +00:00
AIO-switch-updater/include/reboot_payload.h

19 lines
270 B
C
Raw Normal View History

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