| 30 | #endif |
| 31 | |
| 32 | static bool VSIsWow64() |
| 33 | { |
| 34 | BOOL isWow64 = false; |
| 35 | return IsWow64Process(GetCurrentProcess(), &isWow64) && isWow64; |
| 36 | } |
| 37 | |
| 38 | static bool VSIsArm64Host() |
| 39 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…