Skip to content

Commit

Permalink
Merge pull request #2 from Idov31/dev
Browse files Browse the repository at this point in the history
Beta
  • Loading branch information
Idov31 committed Jun 5, 2022
2 parents 54ff825 + 3edddaf commit 9b56e6f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions Example/NidhoggExample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ int wmain(int argc, const wchar_t* argv[]) {
if (_wcsicmp(argv[1], L"process") == 0)
success = NidhoggProcessClearAllProtection();
else if (_wcsicmp(argv[1], L"file") == 0) {
std::cout << "TBA" << std::endl;
success = NidhoggFileClearAllProtection();
}

break;
}
case Options::Hide:
Expand All @@ -104,9 +104,11 @@ int wmain(int argc, const wchar_t* argv[]) {
success = NidhoggProcessHide(pids);
}
else if (_wcsicmp(argv[1], L"file") == 0) {
std::cout << "TBA" << std::endl;
std::cerr << "[ - ] Invalid option!" << std::endl;
PrintUsage();
return 1;
}

break;
}
case Options::Elevate:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Nidhogg can work on any version of Windows 10 and Windows 11.

This repository contains a kernel driver with C++ header to communicate with it.

**NOTE: This project is currently on its alpha, more features will be released in the coming weeks.**
**NOTE: This project is currently on its beta, more features will be released in the coming weeks.**

## Current Features

Expand Down

0 comments on commit 9b56e6f

Please sign in to comment.