Sync with trunk r58740.
[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 NTAPI
39 NtfsAcqLazyWrite(PVOID Context,
40 BOOLEAN Wait)
41 {
42 UNIMPLEMENTED;
43 return FALSE;
44 }
45
46 VOID NTAPI
47 NtfsRelLazyWrite(PVOID Context)
48 {
49 UNIMPLEMENTED;
50 }
51
52 BOOLEAN NTAPI
53 NtfsAcqReadAhead(PVOID Context,
54 BOOLEAN Wait)
55 {
56 UNIMPLEMENTED;
57 return FALSE;
58 }
59
60 VOID NTAPI
61 NtfsRelReadAhead(PVOID Context)
62 {
63 UNIMPLEMENTED;
64 }