- swr -> Rubidium - LIFont (TTF Font Renderer) - Implement shbin as c++ array - Larger Mesaage Box - Add Texture Loader - Update Image/Error and other sytems to Lithium - Optimize Render2 for Lithium
17 lines
386 B
C++
17 lines
386 B
C++
#pragma once
|
|
|
|
#include <3ds.h> // Result
|
|
|
|
#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
|