mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27:56 +00:00
f09fc4a5a2
- Update FatFS port from 0.07e to 0.13 - Multi-device support - Basic test at run/fatfs - Adaption of existing components Note, ffat is now consistently renamed to fatfs. Ref #2410
27 lines
533 B
C++
27 lines
533 B
C++
/*
|
|
* \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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__FATFS__BLOCK_H_
|
|
#define _INCLUDE__FATFS__BLOCK_H_
|
|
|
|
namespace Genode {
|
|
struct Env;
|
|
struct Allocator;
|
|
}
|
|
|
|
namespace Fatfs {
|
|
void block_init(Genode::Env &, Genode::Allocator &heap);
|
|
}
|
|
|
|
#endif /* _INCLUDE__FATFS__BLOCK_H_ */
|