| 228 | |
| 229 | |
| 230 | void PrintCurrentUser() { |
| 231 | wchar_t name[256]; |
| 232 | DWORD size = sizeof(name) / sizeof(wchar_t); |
| 233 | if (GetUserName(name, &size)) { |
| 234 | std::wcout << L"User: " << name << std::endl; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | |
| 239 | BOOL PermissionMakeMeDebug() { |
nothing calls this directly
no outgoing calls
no test coverage detected