| 19 | constexpr int systemProcessNamesCount = sizeof(systemProcessNames) / sizeof(systemProcessNames[0]); |
| 20 | |
| 21 | std::wstring GetDBWinName(bool global, const std::wstring& name) |
| 22 | { |
| 23 | return global ? L"Global\\" + name : name; |
| 24 | } |
| 25 | |
| 26 | Win32::Handle CreateDBWinBufferMapping(bool global) |
| 27 | { |
no outgoing calls
no test coverage detected