mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTOSKRNL]
- Stop being shy and claim having WDM 1.30, like windows 2003 does svn path=/trunk/; revision=61332
This commit is contained in:
parent
52dbb0a1ec
commit
c5510e9936
1 changed files with 2 additions and 2 deletions
|
@ -99,8 +99,8 @@ NTAPI
|
|||
IoIsWdmVersionAvailable(IN UCHAR MajorVersion,
|
||||
IN UCHAR MinorVersion)
|
||||
{
|
||||
/* Return support for WDM 1.10 (Windows 2000) */
|
||||
if (MajorVersion <= 1 && MinorVersion <= 0x10) return TRUE;
|
||||
/* Return support for WDM 1.30 (Windows Server 2003) */
|
||||
if (MajorVersion <= 1 && MinorVersion <= 0x30) return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue