/** Copyright 2008-2010, Ingo Weinhold, ingo_weinhold@gmx.de.* Copyright 2004-2009, Axel DΓΆrfler, axeld@pinc-software.de.* Distributed under the terms of the MIT License.*/#include "IOCallback.h"IOCallback::~IOCallback(){}status_tIOCallback::DoIO(IOOperation* operation){return B_ERROR;}/*static*/ status_tIOCallback::WrapperFunction(void* data, io_operation* operation){return ((IOCallback*)data)->DoIO(operation);}