First usable version

This commit is contained in:
alexeevdv
2015-02-14 23:18:15 +03:00
parent db90d25ea6
commit e5f9ee4ec7
11 changed files with 271 additions and 263 deletions
+12 -12
View File
@@ -41,23 +41,23 @@ int main(int argc, char* argv[])
printf(" --: end of options\n");
printf("\n");
// if (argc < 2)
// {
// PrintUsage(argv[0]);
// cin.get();
// return 1;
// }
if (argc < 2)
{
PrintUsage(argv[0]);
cin.get();
return 1;
}
// if (!ProcessCommandLine(argc, argv))
// {
// return 1;
// }
if (!ProcessCommandLine(argc, argv))
{
return 1;
}
CFile fileInput;
CFile fileOutput;
g_strInputFileName = "BECA.int";
g_strOutputFileName = "BECA.int.ssl";
//g_strInputFileName = "BECA.int";
//g_strOutputFileName = "BECA.int.ssl";
if (!fileInput.Open(g_strInputFileName, CFile::modeRead | CFile::shareDenyWrite))
{