/src/sleuthkit/tsk/fs/hfs_journal.cpp
Line | Count | Source |
1 | | /* |
2 | | * The Sleuth Kit |
3 | | * |
4 | | * This software is distributed under the Common Public License 1.0 |
5 | | */ |
6 | | |
7 | | /** |
8 | | * \file hfs_journal.c |
9 | | * Contains the internal TSK HFS+ journal code -- not included in code by default. |
10 | | */ |
11 | | #include "tsk_fs_i.h" |
12 | | #include "tsk_hfs.h" |
13 | | |
14 | | uint8_t |
15 | | hfs_jopen( |
16 | | [[maybe_unused]] TSK_FS_INFO * fs, |
17 | | [[maybe_unused]] TSK_INUM_T inum) |
18 | 0 | { |
19 | 0 | tsk_fprintf(stderr, "jopen not implemented for HFS yet"); |
20 | |
|
21 | 0 | return 0; |
22 | 0 | } |
23 | | |
24 | | uint8_t |
25 | | hfs_jentry_walk( |
26 | | [[maybe_unused]] TSK_FS_INFO * fs, |
27 | | [[maybe_unused]] int flags, |
28 | | [[maybe_unused]] TSK_FS_JENTRY_WALK_CB action, |
29 | | [[maybe_unused]] void *ptr) |
30 | 0 | { |
31 | 0 | tsk_fprintf(stderr, "jentry_walk not implemented for HFS yet"); |
32 | |
|
33 | 0 | return 0; |
34 | 0 | } |
35 | | |
36 | | uint8_t |
37 | | hfs_jblk_walk( |
38 | | [[maybe_unused]] TSK_FS_INFO * fs, |
39 | | [[maybe_unused]] TSK_DADDR_T start, |
40 | | [[maybe_unused]] TSK_DADDR_T end, |
41 | | [[maybe_unused]] int flags, |
42 | | [[maybe_unused]] TSK_FS_JBLK_WALK_CB action, |
43 | | [[maybe_unused]] void *ptr) |
44 | 0 | { |
45 | |
|
46 | 0 | tsk_fprintf(stderr, "jblk_walk not implemented for HFS yet"); |
47 | |
|
48 | 0 | return 0; |
49 | 0 | } |