mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
32 lines
1 KiB
C
32 lines
1 KiB
C
/*
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FUSEE_STRATOSPHERE_H
|
|
#define FUSEE_STRATOSPHERE_H
|
|
|
|
#include "utils.h"
|
|
#include "kip.h"
|
|
|
|
#define STRATOSPHERE_INI1_EMBEDDED 0x0
|
|
#define STRATOSPHERE_INI1_PACKAGE2 0x1
|
|
#define STRATOSPHERE_INI1_MAX 0x2
|
|
|
|
ini1_header_t *stratosphere_get_ini1(uint32_t target_firmware);
|
|
void stratosphere_free_ini1(void);
|
|
|
|
ini1_header_t *stratosphere_merge_inis(ini1_header_t **inis, unsigned int num_inis);
|
|
|
|
#endif
|