1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6// included by vfs.cpp
7
8//#include "io_requests.h"
9
10
11// #pragma mark - public API
12
13
14extern "C" fssh_status_t
15fssh_do_fd_io(int fd, fssh_io_request* request)
16{
17	fssh_panic("fssh_do_fd_io() not yet implemented");
18	return FSSH_B_BAD_VALUE;
19}
20
21
22extern "C" fssh_status_t
23fssh_do_iterative_fd_io(int fd, fssh_io_request* request,
24	fssh_iterative_io_get_vecs getVecs,
25	fssh_iterative_io_finished finished, void* cookie)
26{
27	fssh_panic("fssh_do_iterative_fd_io() not yet implemented");
28	return FSSH_B_BAD_VALUE;
29}
30