2017-03-07 14:16:15 +00:00
|
|
|
/*
|
|
|
|
* \brief Block session initialize function
|
|
|
|
* \author Josef Soentgen
|
|
|
|
* \date 2017-03-07
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Genode Labs GmbH
|
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 18:59:37 +00:00
|
|
|
#ifndef _INCLUDE__FATFS__BLOCK_H_
|
|
|
|
#define _INCLUDE__FATFS__BLOCK_H_
|
2017-03-07 14:16:15 +00:00
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
struct Env;
|
|
|
|
struct Allocator;
|
|
|
|
}
|
|
|
|
|
2017-05-16 18:59:37 +00:00
|
|
|
namespace Fatfs {
|
2017-03-07 14:16:15 +00:00
|
|
|
void block_init(Genode::Env &, Genode::Allocator &heap);
|
|
|
|
}
|
|
|
|
|
2017-05-16 18:59:37 +00:00
|
|
|
#endif /* _INCLUDE__FATFS__BLOCK_H_ */
|