Initial Commit

This commit is contained in:
2026-03-05 20:18:29 +01:00
commit 5a4d3ee8e0
901 changed files with 296682 additions and 0 deletions

19
include/reboot_payload.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef __REBOOT_PAYLOAD_H__
#define __REBOOT_PAYLOAD_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <switch.h>
int reboot_to_payload(const char* path, bool legacy);
#ifdef __cplusplus
}
#endif
#endif