Merge 13159:13510 from trunk
[reactos.git] / reactos / ntoskrnl / io / wdm.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/io/wdm.c
6 * PURPOSE: Various Windows Driver Model routines
7 *
8 * PROGRAMMERS: Filip Navara (xnavara@volny.cz)
9 */
10
11 #include <ntoskrnl.h>
12
13 /*
14 * @implemented
15 */
16 BOOLEAN STDCALL
17 IoIsWdmVersionAvailable(
18 IN UCHAR MajorVersion,
19 IN UCHAR MinorVersion
20 )
21 {
22 if (MajorVersion <= 1 && MinorVersion <= 10)
23 return TRUE;
24 return FALSE;
25 }