Home
last modified time | relevance | path

Searched refs:sInfoOS (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/shell/source/win32/shlxthandler/propsheets/
H A Dpropsheets.cxx192 OSVERSIONINFO sInfoOS; in AddPages() local
194 ZeroMemory( &sInfoOS, sizeof(OSVERSIONINFO) ); in AddPages()
195 sInfoOS.dwOSVersionInfoSize = sizeof( OSVERSIONINFO ); in AddPages()
196 GetVersionEx( &sInfoOS ); in AddPages()
197 bool bIsVistaOrLater = (sInfoOS.dwMajorVersion >= 6); in AddPages()
/AOO41X/main/desktop/win32/source/setup/
H A Dsetup.cpp126 OSVERSIONINFO sInfoOS; in SetupApp() local
128 ZeroMemory( &sInfoOS, sizeof(OSVERSIONINFO) ); in SetupApp()
129 sInfoOS.dwOSVersionInfoSize = sizeof( OSVERSIONINFO ); in SetupApp()
131 GetVersionEx( &sInfoOS ); in SetupApp()
133 m_nOSVersion = sInfoOS.dwMajorVersion; in SetupApp()
134 m_nMinorVersion = sInfoOS.dwMinorVersion; in SetupApp()
135 m_bIsWin9x = ( VER_PLATFORM_WIN32_NT != sInfoOS.dwPlatformId ); in SetupApp()