[NTFS]
[reactos.git] / reactos / 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 /* FUNCTIONS ****************************************************************/
36
37 BOOLEAN
38 NTAPI
39 NtfsAcqLazyWrite(PVOID Context,
40 BOOLEAN Wait)
41 {
42 UNREFERENCED_PARAMETER(Context);
43 UNREFERENCED_PARAMETER(Wait);
44 UNIMPLEMENTED;
45 return FALSE;
46 }
47
48
49 VOID
50 NTAPI
51 NtfsRelLazyWrite(PVOID Context)
52 {
53 UNREFERENCED_PARAMETER(Context);
54 UNIMPLEMENTED;
55 }
56
57
58 BOOLEAN
59 NTAPI
60 NtfsAcqReadAhead(PVOID Context,
61 BOOLEAN Wait)
62 {
63 UNREFERENCED_PARAMETER(Context);
64 UNREFERENCED_PARAMETER(Wait);
65 UNIMPLEMENTED;
66 return FALSE;
67 }
68
69
70 VOID
71 NTAPI
72 NtfsRelReadAhead(PVOID Context)
73 {
74 UNREFERENCED_PARAMETER(Context);
75 UNIMPLEMENTED;
76 }
77
78 /* EOF */