2014-12-17 05:38:14 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 00:17:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
// Directory separators, do we need this?
|
2013-09-05 00:17:46 +00:00
|
|
|
#define DIR_SEP "/"
|
|
|
|
#define DIR_SEP_CHR '/'
|
|
|
|
|
2013-09-09 00:42:03 +00:00
|
|
|
#ifndef MAX_PATH
|
2014-09-13 00:06:13 +00:00
|
|
|
#define MAX_PATH 260
|
2013-09-09 00:42:03 +00:00
|
|
|
#endif
|
2013-09-08 17:17:27 +00:00
|
|
|
|
2013-09-05 00:17:46 +00:00
|
|
|
// The user data dir
|
|
|
|
#define ROOT_DIR "."
|
2015-03-16 01:22:59 +00:00
|
|
|
#define USERDATA_DIR "user"
|
|
|
|
#ifdef USER_DIR
|
2016-09-18 00:38:01 +00:00
|
|
|
#define EMU_DATA_DIR USER_DIR
|
2013-09-05 00:17:46 +00:00
|
|
|
#else
|
2016-09-18 00:38:01 +00:00
|
|
|
#ifdef _WIN32
|
2016-11-26 21:57:36 +00:00
|
|
|
#define EMU_DATA_DIR "Citra"
|
2016-09-18 00:38:01 +00:00
|
|
|
#else
|
|
|
|
#define EMU_DATA_DIR "citra-emu"
|
|
|
|
#endif
|
2013-09-05 00:17:46 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Dirs in both User and Sys
|
|
|
|
#define EUR_DIR "EUR"
|
|
|
|
#define USA_DIR "USA"
|
|
|
|
#define JAP_DIR "JAP"
|
|
|
|
|
|
|
|
// Subdirs in the User dir returned by GetUserPath(D_USER_IDX)
|
2016-09-18 00:38:01 +00:00
|
|
|
#define CONFIG_DIR "config"
|
|
|
|
#define CACHE_DIR "cache"
|
|
|
|
#define SDMC_DIR "sdmc"
|
|
|
|
#define NAND_DIR "nand"
|
|
|
|
#define SYSDATA_DIR "sysdata"
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
// Filenames
|
|
|
|
// Files in the directory returned by GetUserPath(D_CONFIG_IDX)
|
2016-09-18 00:38:01 +00:00
|
|
|
#define EMU_CONFIG "emu.ini"
|
|
|
|
#define DEBUGGER_CONFIG "debugger.ini"
|
|
|
|
#define LOGGER_CONFIG "logger.ini"
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2014-11-26 20:00:51 +00:00
|
|
|
// Sys files
|
2016-09-18 00:38:01 +00:00
|
|
|
#define SHARED_FONT "shared_font.bin"
|