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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "wine/port.h"
39 #include "wine/winbase16.h"
40 #include "wine/unicode.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(ver
);
45 /**********************************************************************
48 * Parse the contents of the Version key.
50 static WORD
parse_dos_version( HKEY hkey
)
52 static const WCHAR DosW
[] = {'D','O','S',0};
54 UNICODE_STRING valueW
;
56 char tmp
[64], buffer
[50];
57 KEY_VALUE_PARTIAL_INFORMATION
*info
= (KEY_VALUE_PARTIAL_INFORMATION
*)tmp
;
61 RtlInitUnicodeString( &valueW
, DosW
);
62 if (!NtQueryValueKey( hkey
, &valueW
, KeyValuePartialInformation
, tmp
, sizeof(tmp
), &count
))
64 RtlUnicodeToMultiByteN( buffer
, sizeof(buffer
)-1, &len
,
65 (WCHAR
*)info
->Data
, info
->DataLength
);
68 if (sscanf( buffer
, "%d.%d", &hi
, &lo
) == 2) ret
= MAKEWORD( lo
, hi
);
69 else MESSAGE("Wrong format for DOS version in config file. Use \"x.xx\"\n");
75 /**********************************************************************
78 WORD
get_dos_version(void)
80 OBJECT_ATTRIBUTES attr
;
82 HKEY hkey
, config_key
;
83 WCHAR buffer
[MAX_PATH
];
86 static const WCHAR configW
[] = {'M','a','c','h','i','n','e','\\',
87 'S','o','f','t','w','a','r','e','\\',
90 'C','o','n','f','i','g',0};
91 static const WCHAR appdefaultsW
[] = {'A','p','p','D','e','f','a','u','l','t','s','\\',0};
92 static const WCHAR versionW
[] = {'\\','V','e','r','s','i','o','n',0};
94 attr
.Length
= sizeof(attr
);
95 attr
.RootDirectory
= 0;
96 attr
.ObjectName
= &nameW
;
98 attr
.SecurityDescriptor
= NULL
;
99 attr
.SecurityQualityOfService
= NULL
;
100 RtlInitUnicodeString( &nameW
, configW
);
102 if (NtOpenKey( &config_key
, KEY_ALL_ACCESS
, &attr
)) return 0;
103 attr
.RootDirectory
= config_key
;
105 /* open AppDefaults\\appname\\Version key */
106 if (GetModuleFileNameW( 0, buffer
, sizeof(buffer
)/sizeof(WCHAR
) ))
108 WCHAR
*p
, *appname
, appversion
[MAX_PATH
+20];
111 if ((p
= strrchrW( appname
, '/' ))) appname
= p
+ 1;
112 if ((p
= strrchrW( appname
, '\\' ))) appname
= p
+ 1;
114 strcpyW( appversion
, appdefaultsW
);
115 strcatW( appversion
, appname
);
116 strcatW( appversion
, versionW
);
118 TRACE( "getting version from %s\n", debugstr_w(appversion
) );
119 RtlInitUnicodeString( &nameW
, appversion
);
121 if (!NtOpenKey( &hkey
, KEY_ALL_ACCESS
, &attr
))
123 ret
= parse_dos_version( hkey
);
130 TRACE( "getting default version\n" );
131 RtlInitUnicodeString( &nameW
, versionW
+ 1 );
132 if (!NtOpenKey( &hkey
, KEY_ALL_ACCESS
, &attr
))
134 ret
= parse_dos_version( hkey
);
139 NtClose( config_key
);
144 /***********************************************************************
145 * GetVersion (KERNEL.3)
147 DWORD WINAPI
GetVersion16(void)
149 static WORD dosver
, winver
;
151 if (!dosver
) /* not determined yet */
153 RTL_OSVERSIONINFOEXW info
;
155 info
.dwOSVersionInfoSize
= sizeof(info
);
156 if (RtlGetVersion( &info
) != STATUS_SUCCESS
) return 0;
158 if (info
.dwMajorVersion
<= 3)
159 winver
= MAKEWORD( info
.dwMajorVersion
, info
.dwMinorVersion
);
161 winver
= MAKEWORD( 3, 95 );
163 switch(info
.dwPlatformId
)
165 case VER_PLATFORM_WIN32s
:
166 if ((dosver
= get_dos_version())) break; /* got the configured version */
168 switch(MAKELONG( info
.dwMinorVersion
, info
.dwMajorVersion
))
171 dosver
= 0x0303; /* DOS 3.3 for Windows 2.0 */
174 dosver
= 0x0500; /* DOS 5.0 for Windows 3.0 */
177 dosver
= 0x0616; /* DOS 6.22 for Windows 3.1 and later */
181 case VER_PLATFORM_WIN32_WINDOWS
:
182 /* DOS 8.0 for WinME, 7.0 for Win95/98 */
183 if (info
.dwMinorVersion
>= 90) dosver
= 0x0800;
184 else dosver
= 0x0700;
186 case VER_PLATFORM_WIN32_NT
:
187 dosver
= 0x0500; /* always DOS 5.0 for NT */
190 TRACE( "DOS %d.%02d Win %d.%02d\n",
191 HIBYTE(dosver
), LOBYTE(dosver
), LOBYTE(winver
), HIBYTE(winver
) );
193 return MAKELONG( winver
, dosver
);
197 /***********************************************************************
198 * GetVersion (KERNEL32.@)
209 DWORD WINAPI
GetVersion(void)
211 RTL_OSVERSIONINFOEXW info
;
214 info
.dwOSVersionInfoSize
= sizeof(info
);
215 if (RtlGetVersion( &info
) != STATUS_SUCCESS
) return 0;
217 result
= MAKELONG( MAKEWORD( info
.dwMajorVersion
, info
.dwMinorVersion
),
218 (info
.dwPlatformId
^ 2) << 14 );
219 if (info
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) result
|= LOWORD(info
.dwBuildNumber
) << 16;
224 /***********************************************************************
225 * GetVersionEx (KERNEL.149)
227 BOOL16 WINAPI
GetVersionEx16(OSVERSIONINFO16
*v
)
231 if (v
->dwOSVersionInfoSize
< sizeof(OSVERSIONINFO16
))
233 WARN("wrong OSVERSIONINFO size from app\n");
237 info
.dwOSVersionInfoSize
= sizeof(info
);
238 if (!GetVersionExA( &info
)) return FALSE
;
240 v
->dwMajorVersion
= info
.dwMajorVersion
;
241 v
->dwMinorVersion
= info
.dwMinorVersion
;
242 v
->dwBuildNumber
= info
.dwBuildNumber
;
243 v
->dwPlatformId
= info
.dwPlatformId
;
244 strcpy( v
->szCSDVersion
, info
.szCSDVersion
);
249 /***********************************************************************
250 * GetVersionExA (KERNEL32.@)
252 BOOL WINAPI
GetVersionExA(OSVERSIONINFOA
*v
)
254 RTL_OSVERSIONINFOEXW infoW
;
256 if (v
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOA
) &&
257 v
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOEXA
))
259 WARN("wrong OSVERSIONINFO size from app (got: %ld, expected: %d or %d)\n",
260 v
->dwOSVersionInfoSize
, sizeof(OSVERSIONINFOA
),
261 sizeof(OSVERSIONINFOEXA
));
265 infoW
.dwOSVersionInfoSize
= sizeof(infoW
);
266 if (RtlGetVersion( &infoW
) != STATUS_SUCCESS
) return FALSE
;
268 v
->dwMajorVersion
= infoW
.dwMajorVersion
;
269 v
->dwMinorVersion
= infoW
.dwMinorVersion
;
270 v
->dwBuildNumber
= infoW
.dwBuildNumber
;
271 v
->dwPlatformId
= infoW
.dwPlatformId
;
272 WideCharToMultiByte( CP_ACP
, 0, infoW
.szCSDVersion
, -1,
273 v
->szCSDVersion
, sizeof(v
->szCSDVersion
), NULL
, NULL
);
275 if(v
->dwOSVersionInfoSize
== sizeof(OSVERSIONINFOEXA
))
277 LPOSVERSIONINFOEXA vex
= (LPOSVERSIONINFOEXA
) v
;
278 vex
->wServicePackMajor
= infoW
.wServicePackMajor
;
279 vex
->wServicePackMinor
= infoW
.wServicePackMinor
;
280 vex
->wSuiteMask
= infoW
.wSuiteMask
;
281 vex
->wProductType
= infoW
.wProductType
;
287 /***********************************************************************
288 * GetVersionExW (KERNEL32.@)
290 BOOL WINAPI
GetVersionExW( OSVERSIONINFOW
*info
)
292 if (info
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOW
) &&
293 info
->dwOSVersionInfoSize
!= sizeof(OSVERSIONINFOEXW
))
295 WARN("wrong OSVERSIONINFO size from app (got: %ld, expected: %d or %d)\n",
296 info
->dwOSVersionInfoSize
, sizeof(OSVERSIONINFOW
),
297 sizeof(OSVERSIONINFOEXW
));
300 return (RtlGetVersion( (RTL_OSVERSIONINFOEXW
*)info
) == STATUS_SUCCESS
);
304 /******************************************************************************
305 * VerifyVersionInfoA (KERNEL32.@)
307 BOOL WINAPI
VerifyVersionInfoA( LPOSVERSIONINFOEXA lpVersionInfo
, DWORD dwTypeMask
,
308 DWORDLONG dwlConditionMask
)
310 OSVERSIONINFOEXW verW
;
312 verW
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFOEXW
);
313 verW
.dwMajorVersion
= lpVersionInfo
->dwMajorVersion
;
314 verW
.dwMinorVersion
= lpVersionInfo
->dwMinorVersion
;
315 verW
.dwBuildNumber
= lpVersionInfo
->dwBuildNumber
;
316 verW
.dwPlatformId
= lpVersionInfo
->dwPlatformId
;
317 verW
.wServicePackMajor
= lpVersionInfo
->wServicePackMajor
;
318 verW
.wServicePackMinor
= lpVersionInfo
->wServicePackMinor
;
319 verW
.wSuiteMask
= lpVersionInfo
->wSuiteMask
;
320 verW
.wProductType
= lpVersionInfo
->wProductType
;
321 verW
.wReserved
= lpVersionInfo
->wReserved
;
323 return VerifyVersionInfoW(&verW
, dwTypeMask
, dwlConditionMask
);
327 /******************************************************************************
328 * VerifyVersionInfoW (KERNEL32.@)
330 BOOL WINAPI
VerifyVersionInfoW( LPOSVERSIONINFOEXW lpVersionInfo
, DWORD dwTypeMask
,
331 DWORDLONG dwlConditionMask
)
333 switch(RtlVerifyVersionInfo( lpVersionInfo
, dwTypeMask
, dwlConditionMask
))
335 case STATUS_INVALID_PARAMETER
:
336 SetLastError( ERROR_BAD_ARGUMENTS
);
338 case STATUS_REVISION_MISMATCH
:
339 SetLastError( ERROR_OLD_WIN_VERSION
);
346 /***********************************************************************
347 * GetWinFlags (KERNEL.132)
349 DWORD WINAPI
GetWinFlags16(void)
351 static const long cpuflags
[5] =
352 { WF_CPU086
, WF_CPU186
, WF_CPU286
, WF_CPU386
, WF_CPU486
};
359 /* There doesn't seem to be any Pentium flag. */
360 result
= cpuflags
[min(si
.wProcessorLevel
, 4)] | WF_ENHANCED
| WF_PMODE
| WF_80x87
| WF_PAGING
;
361 if (si
.wProcessorLevel
>= 4) result
|= WF_HASCPUID
;
362 ovi
.dwOSVersionInfoSize
= sizeof(ovi
);
364 if (ovi
.dwPlatformId
== VER_PLATFORM_WIN32_NT
)
365 result
|= WF_WIN32WOW
; /* undocumented WF_WINNT */
371 /* Not used at this time. This is here for documentation only */
373 /* WINDEBUGINFO flags values */
374 #define WDI_OPTIONS 0x0001
375 #define WDI_FILTER 0x0002
376 #define WDI_ALLOCBREAK 0x0004
378 /* dwOptions values */
379 #define DBO_CHECKHEAP 0x0001
380 #define DBO_BUFFERFILL 0x0004
381 #define DBO_DISABLEGPTRAPPING 0x0010
382 #define DBO_CHECKFREE 0x0020
384 #define DBO_SILENT 0x8000
386 #define DBO_TRACEBREAK 0x2000
387 #define DBO_WARNINGBREAK 0x1000
388 #define DBO_NOERRORBREAK 0x0800
389 #define DBO_NOFATALBREAK 0x0400
390 #define DBO_INT3BREAK 0x0100
392 /* DebugOutput flags values */
393 #define DBF_TRACE 0x0000
394 #define DBF_WARNING 0x4000
395 #define DBF_ERROR 0x8000
396 #define DBF_FATAL 0xc000
398 /* dwFilter values */
399 #define DBF_KERNEL 0x1000
400 #define DBF_KRN_MEMMAN 0x0001
401 #define DBF_KRN_LOADMODULE 0x0002
402 #define DBF_KRN_SEGMENTLOAD 0x0004
403 #define DBF_USER 0x0800
404 #define DBF_GDI 0x0400
405 #define DBF_MMSYSTEM 0x0040
406 #define DBF_PENWIN 0x0020
407 #define DBF_APPLICATION 0x0008
408 #define DBF_DRIVER 0x0010
410 #endif /* NOLOGERROR */
413 /***********************************************************************
414 * GetWinDebugInfo (KERNEL.355)
416 BOOL16 WINAPI
GetWinDebugInfo16(WINDEBUGINFO16
*lpwdi
, UINT16 flags
)
418 FIXME("(%8lx,%d): stub returning 0\n",
419 (unsigned long)lpwdi
, flags
);
420 /* 0 means not in debugging mode/version */
421 /* Can this type of debugging be used in wine ? */
422 /* Constants: WDI_OPTIONS WDI_FILTER WDI_ALLOCBREAK */
427 /***********************************************************************
428 * SetWinDebugInfo (KERNEL.356)
430 BOOL16 WINAPI
SetWinDebugInfo16(WINDEBUGINFO16
*lpwdi
)
432 FIXME("(%8lx): stub returning 0\n", (unsigned long)lpwdi
);
433 /* 0 means not in debugging mode/version */
434 /* Can this type of debugging be used in wine ? */
435 /* Constants: WDI_OPTIONS WDI_FILTER WDI_ALLOCBREAK */
440 /***********************************************************************
444 * Should fill lpBuffer only if DBO_BUFFERFILL has been set by SetWinDebugInfo()
446 void WINAPI
DebugFillBuffer(LPSTR lpBuffer
, WORD wBytes
)
448 memset(lpBuffer
, DBGFILL_BUFFER
, wBytes
);
451 /***********************************************************************
452 * DiagQuery (KERNEL.339)
454 * returns TRUE if Win called with "/b" (bootlog.txt)
456 BOOL16 WINAPI
DiagQuery16(void)
458 /* perhaps implement a Wine "/b" command line flag sometime ? */
462 /***********************************************************************
463 * DiagOutput (KERNEL.340)
465 * writes a debug string into <windir>\bootlog.txt
467 void WINAPI
DiagOutput16(LPCSTR str
)
470 DPRINTF("DIAGOUTPUT:%s\n", debugstr_a(str
));