Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ endif()
- [luukjp](https://github.com/luukjp)
- [Randark](https://github.com/Randark-JMT)
- [Scrut1ny](https://github.com/Scrut1ny)
- [Christopher Lentocha](https://github.com/CE1CECL)

<br>

Expand Down
1 change: 1 addition & 0 deletions README_FR.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ Et si ce projet vous a été utile, un star serait très apprécié :)
- [luukjp](https://github.com/luukjp)
- [Randark](https://github.com/Randark-JMT)
- [Scrut1ny](https://github.com/Scrut1ny)
- [Christopher Lentocha](https://github.com/CE1CECL)

<br>

Expand Down
2 changes: 2 additions & 0 deletions README_KR.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thx. 💯

Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ endif()
- [Kyun-J](https://github.com/Kyun-J)
- [luukjp](https://github.com/luukjp)
- [Randark](https://github.com/Randark-JMT)
- [Scrut1ny](https://github.com/Scrut1ny)
- [Christopher Lentocha](https://github.com/CE1CECL)

<br>

Expand Down
10 changes: 9 additions & 1 deletion src/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@
#define CLI_WINDOWS 1
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#ifdef WINVER
#undef WINVER
#endif
#define _WIN32_WINNT 0x0601
#define WINVER 0x0601
#include <windows.h>
#else
#define CLI_WINDOWS 0
Expand Down Expand Up @@ -1275,4 +1283,4 @@ int main(int argc, char* argv[]) {
// at this point, it's assumed that the user's intention is for the general summary to be ran
general(high_threshold, all, dynamic);
return 0;
}
}
1 change: 1 addition & 0 deletions src/vmaware.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* - Kyun-J (https://github.com/Kyun-J)
* - luukjp (https://github.com/luukjp)
* - Lorenzo Rizzotti (https://github.com/Dreaming-Codes)
* - Christopher Lentocha (https://github.com/CE1CECL)
* - Repository: https://github.com/kernelwernel/VMAware
* - Docs: https://github.com/kernelwernel/VMAware/docs/documentation.md
* - Full credits: https://github.com/kernelwernel/VMAware#credits-and-contributors-%EF%B8%8F
Expand Down
Loading