2 * Copyright 2008-2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de.
4 * Distributed under the terms of the MIT License.
10 #include "IORequest.h"
13 typedef status_t (*io_callback
)(void* data
, io_operation
* operation
);
18 virtual ~IOCallback();
20 virtual status_t
DoIO(IOOperation
* operation
) = 0;
22 static status_t
WrapperFunction(void* data
,
23 io_operation
* operation
);
27 #endif // IO_CALLBACK_H