#pragma once namespace ActiveBasic { namespace Common { OSVERSIONINFO const& GetOSVersion(); inline bool Is9x() { return GetOSVersion().dwPlatformId == VER_PLATFORM_WIN32_WINDOWS; } }}