2 * Windows and DOS version functions
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998 Patrik Stridvall
6 * Copyright 1998, 2003 Andreas Mohr
7 * Copyright 1997, 2003 Alexandre Julliard
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
32 #define WIN32_NO_STATUS
39 #include "wine/winbase16.h"
40 #include "wine/unicode.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(ver
);
46 /***********************************************************************
47 * GetVersion (KERNEL.3)
49 DWORD WINAPI
GetVersion16(void)
51 static WORD dosver
, winver
;
53 if (!dosver
) /* not determined yet */
55 RTL_OSVERSIONINFOEXW info
;
57 info
.dwOSVersionInfoSize
= sizeof(info
);
58 if (RtlGetVersion( &info
) != STATUS_SUCCESS
) return 0;
60 if (info
.dwMajorVersion
<= 3)
61 winver
= MAKEWORD( info
.dwMajorVersion
, info
.dwMinorVersion
);
63 winver
= MAKEWORD( 3, 95 );
65 switch(info
.dwPlatformId
)
67 case VER_PLATFORM_WIN32s
:
68 switch(MAKELONG( info
.dwMinorVersion
, info
.dwMajorVersion
))
71 dosver
= 0x0303; /* DOS 3.3 for Windows 2.0 */
74 dosver
= 0x0500; /* DOS 5.0 for Windows 3.0 */
77 dosver
= 0x0616; /* DOS 6.22 for Windows 3.1 and later */
81 case VER_PLATFORM_WIN32_WINDOWS
:
82 /* DOS 8.0 for WinME, 7.0 for Win95/98 */
83 if (info
.dwMinorVersion
>= 90) dosver
= 0x0800;
86 case VER_PLATFORM_WIN32_NT
:
87 dosver
= 0x0500; /* always DOS 5.0 for NT */
90 TRACE( "DOS %d.%02d Win %d.%02d\n",
91 HIBYTE(dosver
), LOBYTE(dosver
), LOBYTE(winver
), HIBYTE(winver
) );
93 return MAKELONG( winver
, dosver
);
97 /***********************************************************************
98 * GetVersion (KERNEL32.@)
109 DWORD WINAPI
GetVersion(void)
111 DWORD result
= MAKELONG( MAKEWORD( NtCurrentTeb()->Peb
->OSMajorVersion
,
112 NtCurrentTeb()->Peb
->OSMinorVersion
),
113 (NtCurrentTeb()->Peb
->OSPlatformId
^ 2) << 14 );
114 if (NtCurrentTeb()->Peb
->OSPlatformId
== VER_PLATFORM_WIN32_NT
)
115 result
|= LOWORD(NtCurrentTeb()->Peb
->OSBuildNumber
) << 16;
120 /***********************************************************************
121 * GetVersionEx (KERNEL.149)
123 BOOL16 WINAPI
GetVersionEx16(OSVERSIONINFO16
*v
)
127 if (v
->dwOSVersionInfoSize
< sizeof(OSVERSIONINFO16
))
129 WARN("wrong OSVERSIONINFO size from app\n");
133 info
.dwOSVersionInfoSize
= sizeof(info
);
134 if (!GetVersionExA( &info
)) return FALSE
;
136 v
->dwMajorVersion
= info
.dwMajorVersion
;
137 v
->dwMinorVersion
= info
.dwMinorVersion
;
138 v
->dwBuildNumber
= info
.dwBuildNumber
;
139 v
->dwPlatformId
= info
.dwPlatformId
;
140 strcpy( v
->szCSDVersion
, info
.szCSDVersion
);
145 /***********************************************************************
146 * GetVersionExA (KERNEL32.@)
148 BOOL WINAPI
GetVersionExA(OSVERSIONINFOA
*v
)
150 RTL_OSVERSIONINFOEXW infoW
;
152 if (v
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOA
) &&
153 v
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOEXA
))
155 WARN("wrong OSVERSIONINFO size from app (got: %d)\n",
156 v
->dwOSVersionInfoSize
);
160 infoW
.dwOSVersionInfoSize
= sizeof(infoW
);
161 if (RtlGetVersion( &infoW
) != STATUS_SUCCESS
) return FALSE
;
163 v
->dwMajorVersion
= infoW
.dwMajorVersion
;
164 v
->dwMinorVersion
= infoW
.dwMinorVersion
;
165 v
->dwBuildNumber
= infoW
.dwBuildNumber
;
166 v
->dwPlatformId
= infoW
.dwPlatformId
;
167 WideCharToMultiByte( CP_ACP
, 0, infoW
.szCSDVersion
, -1,
168 v
->szCSDVersion
, sizeof(v
->szCSDVersion
), NULL
, NULL
);
170 if(v
->dwOSVersionInfoSize
== sizeof(OSVERSIONINFOEXA
))
172 LPOSVERSIONINFOEXA vex
= (LPOSVERSIONINFOEXA
) v
;
173 vex
->wServicePackMajor
= infoW
.wServicePackMajor
;
174 vex
->wServicePackMinor
= infoW
.wServicePackMinor
;
175 vex
->wSuiteMask
= infoW
.wSuiteMask
;
176 vex
->wProductType
= infoW
.wProductType
;
182 /***********************************************************************
183 * GetVersionExW (KERNEL32.@)
185 BOOL WINAPI
GetVersionExW( OSVERSIONINFOW
*info
)
187 if (info
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOW
) &&
188 info
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOEXW
))
190 WARN("wrong OSVERSIONINFO size from app (got: %d)\n",
191 info
->dwOSVersionInfoSize
);
194 return (RtlGetVersion( (RTL_OSVERSIONINFOEXW
*)info
) == STATUS_SUCCESS
);
198 /******************************************************************************
199 * VerifyVersionInfoA (KERNEL32.@)
201 BOOL WINAPI
VerifyVersionInfoA( LPOSVERSIONINFOEXA lpVersionInfo
, DWORD dwTypeMask
,
202 DWORDLONG dwlConditionMask
)
204 OSVERSIONINFOEXW verW
;
206 verW
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFOEXW
);
207 verW
.dwMajorVersion
= lpVersionInfo
->dwMajorVersion
;
208 verW
.dwMinorVersion
= lpVersionInfo
->dwMinorVersion
;
209 verW
.dwBuildNumber
= lpVersionInfo
->dwBuildNumber
;
210 verW
.dwPlatformId
= lpVersionInfo
->dwPlatformId
;
211 verW
.wServicePackMajor
= lpVersionInfo
->wServicePackMajor
;
212 verW
.wServicePackMinor
= lpVersionInfo
->wServicePackMinor
;
213 verW
.wSuiteMask
= lpVersionInfo
->wSuiteMask
;
214 verW
.wProductType
= lpVersionInfo
->wProductType
;
215 verW
.wReserved
= lpVersionInfo
->wReserved
;
217 return VerifyVersionInfoW(&verW
, dwTypeMask
, dwlConditionMask
);
221 /******************************************************************************
222 * VerifyVersionInfoW (KERNEL32.@)
224 BOOL WINAPI
VerifyVersionInfoW( LPOSVERSIONINFOEXW lpVersionInfo
, DWORD dwTypeMask
,
225 DWORDLONG dwlConditionMask
)
227 switch(RtlVerifyVersionInfo( lpVersionInfo
, dwTypeMask
, dwlConditionMask
))
229 case STATUS_INVALID_PARAMETER
:
230 SetLastError( ERROR_BAD_ARGUMENTS
);
232 case STATUS_REVISION_MISMATCH
:
233 SetLastError( ERROR_OLD_WIN_VERSION
);
240 /***********************************************************************
241 * GetWinFlags (KERNEL.132)
243 DWORD WINAPI
GetWinFlags16(void)
245 static const long cpuflags
[5] =
246 { WF_CPU086
, WF_CPU186
, WF_CPU286
, WF_CPU386
, WF_CPU486
};
253 /* There doesn't seem to be any Pentium flag. */
254 result
= cpuflags
[min(si
.wProcessorLevel
, 4)] | WF_ENHANCED
| WF_PMODE
| WF_80x87
| WF_PAGING
;
255 if (si
.wProcessorLevel
>= 4) result
|= WF_HASCPUID
;
256 ovi
.dwOSVersionInfoSize
= sizeof(ovi
);
258 if (ovi
.dwPlatformId
== VER_PLATFORM_WIN32_NT
)
259 result
|= WF_WIN32WOW
; /* undocumented WF_WINNT */
265 /* Not used at this time. This is here for documentation only */
267 /* WINDEBUGINFO flags values */
268 #define WDI_OPTIONS 0x0001
269 #define WDI_FILTER 0x0002
270 #define WDI_ALLOCBREAK 0x0004
272 /* dwOptions values */
273 #define DBO_CHECKHEAP 0x0001
274 #define DBO_BUFFERFILL 0x0004
275 #define DBO_DISABLEGPTRAPPING 0x0010
276 #define DBO_CHECKFREE 0x0020
278 #define DBO_SILENT 0x8000
280 #define DBO_TRACEBREAK 0x2000
281 #define DBO_WARNINGBREAK 0x1000
282 #define DBO_NOERRORBREAK 0x0800
283 #define DBO_NOFATALBREAK 0x0400
284 #define DBO_INT3BREAK 0x0100
286 /* DebugOutput flags values */
287 #define DBF_TRACE 0x0000
288 #define DBF_WARNING 0x4000
289 #define DBF_ERROR 0x8000
290 #define DBF_FATAL 0xc000
292 /* dwFilter values */
293 #define DBF_KERNEL 0x1000
294 #define DBF_KRN_MEMMAN 0x0001
295 #define DBF_KRN_LOADMODULE 0x0002
296 #define DBF_KRN_SEGMENTLOAD 0x0004
297 #define DBF_USER 0x0800
298 #define DBF_GDI 0x0400
299 #define DBF_MMSYSTEM 0x0040
300 #define DBF_PENWIN 0x0020
301 #define DBF_APPLICATION 0x0008
302 #define DBF_DRIVER 0x0010
304 #endif /* NOLOGERROR */
307 /***********************************************************************
308 * GetWinDebugInfo (KERNEL.355)
310 BOOL16 WINAPI
GetWinDebugInfo16(WINDEBUGINFO16
*lpwdi
, UINT16 flags
)
312 FIXME("(%8lx,%d): stub returning 0\n",
313 (unsigned long)lpwdi
, flags
);
314 /* 0 means not in debugging mode/version */
315 /* Can this type of debugging be used in wine ? */
316 /* Constants: WDI_OPTIONS WDI_FILTER WDI_ALLOCBREAK */
321 /***********************************************************************
322 * SetWinDebugInfo (KERNEL.356)
324 BOOL16 WINAPI
SetWinDebugInfo16(WINDEBUGINFO16
*lpwdi
)
326 FIXME("(%8lx): stub returning 0\n", (unsigned long)lpwdi
);
327 /* 0 means not in debugging mode/version */
328 /* Can this type of debugging be used in wine ? */
329 /* Constants: WDI_OPTIONS WDI_FILTER WDI_ALLOCBREAK */
334 /***********************************************************************
338 * Should fill lpBuffer only if DBO_BUFFERFILL has been set by SetWinDebugInfo()
340 void WINAPI
DebugFillBuffer(LPSTR lpBuffer
, WORD wBytes
)
342 memset(lpBuffer
, DBGFILL_BUFFER
, wBytes
);
345 /***********************************************************************
346 * DiagQuery (KERNEL.339)
348 * returns TRUE if Win called with "/b" (bootlog.txt)
350 BOOL16 WINAPI
DiagQuery16(void)
352 /* perhaps implement a Wine "/b" command line flag sometime ? */
356 /***********************************************************************
357 * DiagOutput (KERNEL.340)
359 * writes a debug string into <windir>\bootlog.txt
361 void WINAPI
DiagOutput16(LPCSTR str
)
364 TRACE("DIAGOUTPUT:%s\n", debugstr_a(str
));
367 /***********************************************************************
368 * TermsrvAppInstallMode (KERNEL32.@)
370 * Find out whether the terminal server is in INSTALL or EXECUTE mode.
372 BOOL WINAPI
TermsrvAppInstallMode(void)
378 /***********************************************************************
379 * SetTermsrvAppInstallMode (KERNEL32.@)
381 * This function is said to switch between the INSTALL (TRUE) or
382 * EXECUTE (FALSE) terminal server modes.
384 * This function always returns zero on WinXP Home so it's probably
385 * safe to return that value in most cases. However, if a terminal
386 * server is running it will probably return something else.
388 DWORD WINAPI
SetTermsrvAppInstallMode(BOOL bInstallMode
)
390 FIXME("(%d): stub\n", bInstallMode
);