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