fixed uninitialized variable warning
[reactos.git] / reactos / ntoskrnl / mm / verifier.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/mm/verifier.c
6 * PURPOSE: Driver Verifier functions
7 *
8 * PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ntoskrnl.h>
14 #include <internal/debug.h>
15
16
17 /* FUNCTIONS *****************************************************************/
18
19
20 /*
21 * @unimplemented
22 */
23 NTSTATUS
24 STDCALL
25 MmAddVerifierThunks (
26 IN PVOID ThunkBuffer,
27 IN ULONG ThunkBufferSize
28 )
29 {
30 UNIMPLEMENTED;
31 return STATUS_NOT_IMPLEMENTED;
32 }
33
34
35 /*
36 * @unimplemented
37 */
38
39 ULONG
40 STDCALL
41 MmIsDriverVerifying (
42 IN struct _DRIVER_OBJECT *DriverObject
43 )
44 {
45 UNIMPLEMENTED;
46 return 0;
47 }
48
49
50 /*
51 * @unimplemented
52 */
53 NTSTATUS
54 STDCALL
55 MmIsVerifierEnabled (
56 OUT PULONG VerifierFlags
57 )
58 {
59 UNIMPLEMENTED;
60 return STATUS_NOT_IMPLEMENTED;
61 }
62
63 /* EOF */