Synchronize with trunk revision 59636 (just before Alex's CreateProcess revamp).
[reactos.git] / drivers / filesystems / ntfs / fastio.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2008 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 * COPYRIGHT: See COPYING in the top level directory
20 * PROJECT: ReactOS kernel
21 * FILE: drivers/filesystem/ntfs/fastio.c
22 * PURPOSE: NTFS filesystem driver
23 * PROGRAMMER: Pierre Schweitzer
24 */
25
26 /* INCLUDES *****************************************************************/
27
28 #include <ntddk.h>
29
30 #define NDEBUG
31 #include <debug.h>
32
33 #include "ntfs.h"
34
35
36 /* FUNCTIONS ****************************************************************/
37
38 BOOLEAN
39 NTAPI
40 NtfsAcqLazyWrite(PVOID Context,
41 BOOLEAN Wait)
42 {
43 UNREFERENCED_PARAMETER(Context);
44 UNREFERENCED_PARAMETER(Wait);
45 UNIMPLEMENTED;
46 return FALSE;
47 }
48
49
50 VOID
51 NTAPI
52 NtfsRelLazyWrite(PVOID Context)
53 {
54 UNREFERENCED_PARAMETER(Context);
55 UNIMPLEMENTED;
56 }
57
58
59 BOOLEAN
60 NTAPI
61 NtfsAcqReadAhead(PVOID Context,
62 BOOLEAN Wait)
63 {
64 UNREFERENCED_PARAMETER(Context);
65 UNREFERENCED_PARAMETER(Wait);
66 UNIMPLEMENTED;
67 return FALSE;
68 }
69
70
71 VOID
72 NTAPI
73 NtfsRelReadAhead(PVOID Context)
74 {
75 UNREFERENCED_PARAMETER(Context);
76 UNIMPLEMENTED;
77 }
78
79 /* EOF */