2009-03-08 20:30:37 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Haiku Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _IO_REQUESTS_H
|
|
|
|
#define _IO_REQUESTS_H
|
|
|
|
|
2009-07-29 16:16:15 +04:00
|
|
|
|
2009-03-08 20:30:37 +03:00
|
|
|
/*! I/O request interface */
|
|
|
|
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct IORequest io_request;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool io_request_is_write(const io_request* request);
|
2009-07-29 16:16:15 +04:00
|
|
|
void notify_io_request(io_request* request, status_t status);
|
2009-03-08 20:30:37 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-07-29 16:16:15 +04:00
|
|
|
|
2009-03-08 20:30:37 +03:00
|
|
|
#endif /* _IO_REQUESTS_H */
|