1 /* 2 * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Copyright 2019, Les De Ridder, les@lesderid.net 4 * 5 * Distributed under the terms of the MIT License. 6 */ 7 8 #ifndef _BTRFS_DISK_SYSTEM_H 9 #define _BTRFS_DISK_SYSTEM_H 10 11 #include "system_dependencies.h" 12 13 14 struct initialize_parameters { 15 uint32 blockSize; 16 uint32 sectorSize; 17 bool verbose; 18 }; 19 20 status_t parse_initialize_parameters(const char* parameterString, 21 initialize_parameters& parameters); 22 status_t check_volume_name(const char* name); 23 24 25 #endif // _BTRFS_DISK_SYSTEM_H 26