blob: 3ec5e4db3816d24462ccab2d31c1e82c92a3a196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/***************************************************************************
* Copyright (C) 2010 by Roberto Maar *
* robi@users.berlios.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef EXT4MAGIC_H
#define EXT4MAGIC_H
// ext4magic mode for navigation main()
#define PRINT_SUPERBLOCK 0x0001
#define PRINT_J_SUPERBLOCK 0x0002
#define COMMAND_INODE 0x0004
#define COMMAND_BLOCK 0x0008
#define COMMAND_PATHNAME 0x0010
#define PRINT_TRANSACTION 0x0020
#define PRINT_BLOCKLIST 0x0040
#define PRINT_HISTOGRAM 0x0080
#define INPUT_TIME 0x0100
#define HIGH_QUALITY 0x0200
#define READ_JOURNAL 0x1000
#define RECOVER_INODE 0x2000
#define RECOVER_LIST 0x4000
#define MASK_MAGIC_SCAN 0x3100
// journal status flags
#define JOURNAL_OPEN 0
#define JOURNAL_CLOSE 1
#define JOURNAL_ERROR 2
#endif
|