mirror of
https://github.com/jakcron/nstool
synced 2024-11-22 21:49:30 +00:00
Enable IniProcess and KipProcess in main()
This commit is contained in:
parent
78262bc680
commit
6666eb74d7
1 changed files with 2 additions and 4 deletions
|
@ -12,8 +12,8 @@
|
||||||
#include "NsoProcess.h"
|
#include "NsoProcess.h"
|
||||||
#include "NroProcess.h"
|
#include "NroProcess.h"
|
||||||
#include "NacpProcess.h"
|
#include "NacpProcess.h"
|
||||||
//#include "IniProcess.h"
|
#include "IniProcess.h"
|
||||||
//#include "KipProcess.h"
|
#include "KipProcess.h"
|
||||||
#include "PkiCertProcess.h"
|
#include "PkiCertProcess.h"
|
||||||
#include "EsTikProcess.h"
|
#include "EsTikProcess.h"
|
||||||
#include "AssetProcess.h"
|
#include "AssetProcess.h"
|
||||||
|
@ -161,7 +161,6 @@ int umain(const std::vector<std::string>& args, const std::vector<std::string>&
|
||||||
|
|
||||||
obj.process();
|
obj.process();
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
else if (set.infile.filetype == nstool::Settings::FILE_TYPE_INI)
|
else if (set.infile.filetype == nstool::Settings::FILE_TYPE_INI)
|
||||||
{
|
{
|
||||||
nstool::IniProcess obj;
|
nstool::IniProcess obj;
|
||||||
|
@ -185,7 +184,6 @@ int umain(const std::vector<std::string>& args, const std::vector<std::string>&
|
||||||
|
|
||||||
obj.process();
|
obj.process();
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
else if (set.infile.filetype == nstool::Settings::FILE_TYPE_PKI_CERT)
|
else if (set.infile.filetype == nstool::Settings::FILE_TYPE_PKI_CERT)
|
||||||
{
|
{
|
||||||
nstool::PkiCertProcess obj;
|
nstool::PkiCertProcess obj;
|
||||||
|
|
Loading…
Reference in a new issue