2024-07-12 19:48:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
2024-08-02 13:50:36 +02:00
|
|
|
#include <3ds.h> // Result
|
|
|
|
|
2024-07-12 19:48:34 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Palladium {
|
|
|
|
struct InstallerInfo {
|
|
|
|
unsigned long long total;
|
|
|
|
unsigned long long current;
|
|
|
|
unsigned int mem_size = 0x80000;
|
|
|
|
bool active = false;
|
|
|
|
};
|
|
|
|
Result InstallCia(const std::string& path, bool self);
|
|
|
|
void InstallSetBuffersSize(unsigned int bytes);
|
|
|
|
InstallerInfo InstallGetInfo();
|
|
|
|
} // namespace Palladium
|