| 271 | } |
| 272 | |
| 273 | OSType GetOperatingSystemType( ) |
| 274 | { |
| 275 | const OSType osTypes[] = { Windows10, Windows8, Windows7, WinVista, WinXP, Win2000 }; |
| 276 | for (int i = 0; i < _countof( osTypes ); ++i) |
| 277 | { |
| 278 | if (IsWindowsVersionOrLater( osTypes[i] )) |
| 279 | return osTypes[i]; |
| 280 | } |
| 281 | return UnknownOS; |
| 282 | } |
| 283 | |
| 284 | LONG GetProcessorArchitecture( ) |
| 285 | { |
nothing calls this directly
no test coverage detected