We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can this be incorporated to check for some specific exe/process (with wildcards) to be checked
CODE VOID clip_exe() { const TCHAR* szProcesses[] = { _T("clipdiary%"), _T("clipboard%"), }; WORD iLength = sizeof(szProcesses) / sizeof(szProcesses[0]); for (int i = 0; i < iLength; i++) { TCHAR msg[256] = _T(""); _stprintf_s(msg, sizeof(msg) / sizeof(TCHAR), _T("Checking Clip processes: %s"), szProcesses[i]); if (GetProcessIdFromName(szProcesses[i])) print_results(TRUE, msg); else print_results(FALSE, msg); } } CODE
any ideas please
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How can this be incorporated to check for some specific exe/process (with wildcards) to be checked
any ideas please
The text was updated successfully, but these errors were encountered: