mirror of
https://github.com/OpenTrespasser/JurassicParkTrespasser.git
synced 2024-12-19 23:21:56 +00:00
12 lines
283 B
C++
12 lines
283 B
C++
|
#include "Lib/Sys/RegToIni.hpp"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
std::string targetfile = argc >= 2 ? argv[1] : "OpenTrespasser.ini";
|
||
|
|
||
|
IniFile inifile(targetfile, "OpenTrespasser");
|
||
|
bool outcome = ConvertRegistryToIni(inifile);
|
||
|
|
||
|
return outcome ? EXIT_SUCCESS : EXIT_FAILURE;
|
||
|
}
|