added: makerom

It has some issues, but I'm going to do anymore work on it.
This commit is contained in:
3DSGuy
2014-05-05 21:00:48 +08:00
parent c56a16756e
commit 6c44c7af5e
168 changed files with 71978 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
#define _LARGEFILE_SOURCE
#define _LARGEFILE64_SOURCE
#define _FILE_OFFSET_BITS 64
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>
#include <time.h>
#include <unistd.h>
#include <math.h>
#include <dirent.h>
#include <wchar.h>
#include <sys/stat.h>
#include <sys/types.h>
#ifdef _WIN32
#include <io.h>
#include <direct.h>
#include <windows.h>
#endif
#include "types.h"
#include "utils.h"
#include "crypto.h"
#include "keyset.h"
#include "usersettings.h"
#include "libyaml/yaml.h"
#include "yaml_ctr.h"