| 526 | namespace |
| 527 | { |
| 528 | std::wstring GetCurrentProcessModulePath() |
| 529 | { |
| 530 | // 32767 is the maximum path length without the terminating null |
| 531 | // character. |
| 532 | std::wstring Path(32767, L'\0'); |
| 533 | Path.resize(::GetModuleFileNameW( |
| 534 | nullptr, &Path[0], static_cast<DWORD>(Path.size()))); |
| 535 | return Path; |
| 536 | } |
| 537 | |
| 538 | static std::wstring g_ServiceName = |
| 539 | L"SynthRdp"; |
no outgoing calls
no test coverage detected