Nani the fuck

This commit is contained in:
2017-08-09 08:39:33 -04:00
parent d337623bd0
commit 5fb9d86b62
9 changed files with 81 additions and 35 deletions

View File

@@ -9,7 +9,7 @@ FS_Archive ArchiveThemeExt;
Result open_archives(void);
int get_number_entries(char*);
u32 file_to_buf(FS_Path path, char* buf);
u64 file_to_buf(FS_Path path, FS_Archive archive, char* buf);
u32 zip_file_to_buf(char *file_name, u16 *zip_path, char *buf);
u32 buf_to_file(u32 size, char *path, FS_Archive archive, char *buf);
bool check_file_exists(char *path, FS_Archive archive);

View File

@@ -1,6 +1,8 @@
#ifndef THEMES_H
#define THEMES_H
#include <3ds.h>
typedef struct {
u16 name[0x40];
u16 desc[0x80];
@@ -11,6 +13,6 @@ typedef struct {
bool is_zip;
} theme;
Result single_install(theme*);
Result single_install(theme);
#endif

View File

@@ -1,6 +1,9 @@
#ifndef UNICODE_H
#define UNICODE_H
#include <3ds.h>
ssize_t strulen(u16*, ssize_t);
void struacat(u16 *input, char *addition);
#endif