http://linux-ntfs.sourceforge.net/snapshots/ntfsprogs-200307311516.tar.bz2
[ntfsprogs.git] / include / types.h
1 /*
2  * types.h - Misc type definitions not related to on-disk structure. Part of
3  *           the Linux-NTFS project.
4  *
5  * Copyright (c) 2000-2003 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 _NTFS_TYPES_H
24 #define _NTFS_TYPES_H
25
26 #include "config.h"
27
28 #ifdef HAVE_STDINT_H
29 #include <stdint.h>
30 #endif
31 #include <sys/types.h>
32
33 typedef uint8_t  u8;                    /* Unsigned types of an exact size */
34 typedef uint16_t u16;
35 typedef uint32_t u32;
36 typedef uint64_t u64;
37
38 typedef int8_t  s8;                     /* Signed types of an exact size */
39 typedef int16_t s16;
40 typedef int32_t s32;
41 typedef int64_t s64;
42
43 typedef u16 uchar_t;                    /* 2-byte Unicode character type. */
44 #define UCHAR_T_SIZE_BITS 1
45
46 /*
47  * Clusters are signed 64-bit values on NTFS volumes. We define two types, LCN
48  * and VCN, to allow for type checking and better code readability.
49  */
50 typedef s64 VCN;
51 typedef s64 LCN;
52
53 /*
54  * These are just to make the code more readable...
55  */
56 typedef enum {
57         FALSE = 0,
58         NO = 0,
59         ZERO = 0,
60         TRUE = 1,
61         YES = 1,
62         ONE = 1,
63 } BOOL;
64
65 typedef enum {
66         CASE_SENSITIVE = 0,
67         IGNORE_CASE = 1,
68 } IGNORE_CASE_BOOL;
69
70 #endif /* defined _NTFS_TYPES_H */
71