migrate substitution keywords to SVN
[reactos.git] / reactos / lib / rtl / bootdata.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2003 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 /* $Id$
20 *
21 * COPYRIGHT: See COPYING in the top level directory
22 * PROJECT: ReactOS system libraries
23 * PURPOSE: Boot Data implementation
24 * FILE: lib/rtl/bootdata.c
25 */
26
27 #include <ddk/ntddk.h>
28
29 #define NDEBUG
30 #include <debug.h>
31
32 /* FUNCTIONS *****************************************************************/
33
34 /*
35 * @unimplemented
36 */
37 NTSTATUS
38 STDCALL
39 RtlCreateSystemVolumeInformationFolder(
40 IN PUNICODE_STRING VolumeRootPath
41 )
42 {
43 UNIMPLEMENTED;
44 return STATUS_NOT_IMPLEMENTED;
45 }
46
47 /*
48 * @unimplemented
49 */
50 NTSTATUS
51 STDCALL
52 RtlGetSetBootStatusData(
53 HANDLE Filehandle,
54 BOOLEAN WriteMode,
55 DWORD DataClass,
56 PVOID Buffer,
57 ULONG BufferSize,
58 DWORD DataClass2
59 )
60 {
61 UNIMPLEMENTED;
62 return STATUS_NOT_IMPLEMENTED;
63 }
64
65 /*
66 * @unimplemented
67 */
68 NTSTATUS
69 STDCALL
70 RtlLockBootStatusData(
71 HANDLE Filehandle
72 )
73 {
74 UNIMPLEMENTED;
75 return STATUS_NOT_IMPLEMENTED;
76 }
77
78 /*
79 * @unimplemented
80 */
81 NTSTATUS
82 STDCALL
83 RtlUnlockBootStatusData(
84 HANDLE Filehandle
85 )
86 {
87 UNIMPLEMENTED;
88 return STATUS_NOT_IMPLEMENTED;
89 }
90
91 /* EOF */