1 /*
2 * The Sleuth Kit
3 *
4 * Brian Carrier [carrier <at> sleuthkit [dot] org]
5 * Copyright (c) 2019 Brian Carrier.  All rights reserved
6 *
7 * This software is distributed under the Common Public License 1.0
8 */
9 
10 /*
11 * Contains the pool image structure.
12 */
13 
14 #ifndef _POOL_H
15 #define _POOL_H
16 
17 #include "../pool/tsk_pool.h"
18 #include "../fs/tsk_apfs.hpp"
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24     typedef struct {
25         TSK_IMG_INFO img_info;
26 
27         const TSK_POOL_INFO *pool_info;
28         TSK_DADDR_T pvol_block;
29 
30     } IMG_POOL_INFO;
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 #endif
36