projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52dbb0a
)
[NTOSKRNL]
author
Jérôme Gardou
<jerome.gardou@reactos.org>
Sun, 22 Dec 2013 15:42:47 +0000
(15:42 +0000)
committer
Jérôme Gardou
<jerome.gardou@reactos.org>
Sun, 22 Dec 2013 15:42:47 +0000
(15:42 +0000)
- Stop being shy and claim having WDM 1.30, like windows 2003 does
svn path=/trunk/; revision=61332
reactos/ntoskrnl/io/iomgr/util.c
patch
|
blob
|
history
diff --git
a/reactos/ntoskrnl/io/iomgr/util.c
b/reactos/ntoskrnl/io/iomgr/util.c
index
cb18205
..
14bfafd
100644
(file)
--- a/
reactos/ntoskrnl/io/iomgr/util.c
+++ b/
reactos/ntoskrnl/io/iomgr/util.c
@@
-99,8
+99,8
@@
NTAPI
IoIsWdmVersionAvailable(IN UCHAR MajorVersion,
IN UCHAR MinorVersion)
{
- /* Return support for WDM 1.
10 (Windows 2000
) */
- if (MajorVersion <= 1 && MinorVersion <= 0x
1
0) return TRUE;
+ /* Return support for WDM 1.
30 (Windows Server 2003
) */
+ if (MajorVersion <= 1 && MinorVersion <= 0x
3
0) return TRUE;
return FALSE;
}