Is it possible to have an option that simplifies boolean comparisons like this examples:
Option disabled (current output):
if (IsUserAnAdmin() == 0 && check_if_elevated() != 1) {
...
if (stb.bypass_uac != 0 && check_if_elevated() != 1) {
...
if (stb.enable_guard != 0) {
...
if (IsWow64Process(GetCurrentProcess(), &Wow64Process) != 0) {
...
if (data_41e694 == 0) {
...
if (is_guard_active(&stc->stb) != 0) {
Option Enabled:
if (!IsUserAnAdmin() && !check_if_elevated()) {
...
if (stb.bypass_uac && !check_if_elevated())
...
if (stb.enable_guard) {
...
if (IsWow64Process(GetCurrentProcess(), &Wow64Process)) {
...
if (!data_41e694) {
...
if (is_guard_active(&stc->stb)) {
I could show more examples, but I think that's enough to tell what I mean.
Is it possible to have an option that simplifies boolean comparisons like this examples:
Option disabled (current output):
Option Enabled:
I could show more examples, but I think that's enough to tell what I mean.