xref: /haiku/src/add-ons/kernel/file_systems/btrfs/system_dependencies.h (revision cb29eafe2586fdb2d7685afa69fdab5d88a8b576)
1 /*
2  * Copyright 2017, Chế Vũ Gia Hy, cvghy116@gmail.com.
3  * This file may be used under the terms of the MIT License.
4  */
5 #ifndef _SYSTEM_DEPENDENCIES_H
6 #define _SYSTEM_DEPENDENCIES_H
7 
8 
9 #ifdef FS_SHELL
10 
11 // This needs to be included before the fs_shell wrapper
12 #include <zlib.h>
13 
14 #include <util/AVLTree.h>
15 #include <uuid.h>
16 
17 #include "fssh_api_wrapper.h"
18 #include "fssh_auto_deleter.h"
19 
20 #else	// !FS_SHELL
21 
22 #include <AutoDeleter.h>
23 #include <util/kernel_cpp.h>
24 #include <util/AutoLock.h>
25 #include <util/SinglyLinkedList.h>
26 #include <util/Stack.h>
27 #include <util/AVLTree.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <ByteOrder.h>
31 #include <driver_settings.h>
32 #include <fs_cache.h>
33 #include <fs_interface.h>
34 #include <fs_info.h>
35 #include <fs_volume.h>
36 #include <KernelExport.h>
37 #include <io_requests.h>
38 #include <NodeMonitor.h>
39 #include <SupportDefs.h>
40 #include <lock.h>
41 #include <errno.h>
42 #include <new>
43 #include <dirent.h>
44 #include <string.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <unistd.h>
48 #include <uuid.h>
49 #include <zlib.h>
50 
51 #endif	// !FS_SHELL
52 
53 
54 #endif	// _SYSTEM_DEPENDENCIES
55