remove whitespace from end of lines
[reactos.git] / reactos / drivers / fs / ntfs / linux-ntfs / types.h
1 /*
2 * types.h - Defines for NTFS Linux kernel driver specific types.
3 * Part of the Linux-NTFS project.
4 *
5 * Copyright (c) 2001,2002 Anton Altaparmakov.
6 *
7 * This program/include file is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program/include file is distributed in the hope that it will be
13 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program (in the main directory of the Linux-NTFS
19 * distribution in the file COPYING); if not, write to the Free Software
20 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23 #ifndef _LINUX_NTFS_TYPES_H
24 #define _LINUX_NTFS_TYPES_H
25
26 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
27 #define SN(X) X /* Struct Name */
28 #define SC(P,N) P.N /* ShortCut: Prefix, Name */
29 #else
30 #define SN(X)
31 #define SC(P,N) N
32 #endif
33
34 /* 2-byte Unicode character type. */
35 typedef u16 uchar_t;
36 #define UCHAR_T_SIZE_BITS 1
37
38 /*
39 * Clusters are signed 64-bit values on NTFS volumes. We define two types, LCN
40 * and VCN, to allow for type checking and better code readability.
41 */
42 typedef s64 VCN;
43 typedef s64 LCN;
44
45 /**
46 * run_list_element - in memory vcn to lcn mapping array element
47 * @vcn: starting vcn of the current array element
48 * @lcn: starting lcn of the current array element
49 * @length: length in clusters of the current array element
50 *
51 * The last vcn (in fact the last vcn + 1) is reached when length == 0.
52 *
53 * When lcn == -1 this means that the count vcns starting at vcn are not
54 * physically allocated (i.e. this is a hole / data is sparse).
55 */
56 typedef struct { /* In memory vcn to lcn mapping structure element. */
57 VCN vcn; /* vcn = Starting virtual cluster number. */
58 LCN lcn; /* lcn = Starting logical cluster number. */
59 s64 length; /* Run length in clusters. */
60 } run_list_element;
61
62 /**
63 * run_list - in memory vcn to lcn mapping array including a read/write lock
64 * @rl: pointer to an array of run list elements
65 * @lock: read/write spinlock for serializing access to @rl
66 *
67 */
68 typedef struct {
69 run_list_element *rl;
70 struct rw_semaphore lock;
71 } run_list;
72
73 typedef enum {
74 FALSE = 0,
75 TRUE = 1
76 } BOOL;
77
78 typedef enum {
79 CASE_SENSITIVE = 0,
80 IGNORE_CASE = 1,
81 } IGNORE_CASE_BOOL;
82
83 #endif /* _LINUX_NTFS_TYPES_H */
84