forked from Reloaded-Project/Reloaded-II
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert: Reloaded Bootstrapper to not use JSON for smaller binary & fa…
…ster boot.
- Loading branch information
Showing
7 changed files
with
22,926 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
#pragma once | ||
#include "nlohmann/json.hpp" | ||
#include "CoreCLR.hpp" | ||
#include "ReloadedPaths.h" | ||
|
||
using json = nlohmann::json; | ||
|
||
class LoaderConfig | ||
{ | ||
public: | ||
LoaderConfig() { }; | ||
LoaderConfig(); | ||
~LoaderConfig() = default; | ||
|
||
static string_t get_loader_path(); | ||
static string_t get_launcher_path(); | ||
static string_t get_runtime_config_path(); | ||
json config; | ||
|
||
static ReloadedPaths get_loader_paths(); | ||
string_t get_loader_path(); | ||
string_t get_launcher_path(); | ||
string_t get_runtime_config_path(); | ||
|
||
ReloadedPaths get_loader_paths(); | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.