Changes in uspace/lib/block/libblock.h [79ae36dd:a6ba0c9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/block/libblock.h
r79ae36dd ra6ba0c9 2 2 * Copyright (c) 2008 Jakub Jermar 3 3 * Copyright (c) 2008 Martin Decky 4 * Copyright (c) 2011 Martin Sucha5 4 * All rights reserved. 6 5 * … … 40 39 41 40 #include <stdint.h> 42 #include <async.h>43 41 #include "../../srv/vfs/vfs.h" 44 42 #include <fibril_synch.h> … … 97 95 }; 98 96 99 extern int block_init( exch_mgmt_t,devmap_handle_t, size_t);97 extern int block_init(devmap_handle_t, size_t); 100 98 extern void block_fini(devmap_handle_t); 101 99 … … 115 113 extern int block_get_nblocks(devmap_handle_t, aoff64_t *); 116 114 extern int block_read_direct(devmap_handle_t, aoff64_t, size_t, void *); 117 extern int block_read_bytes_direct(devmap_handle_t, aoff64_t, size_t, void *);118 115 extern int block_write_direct(devmap_handle_t, aoff64_t, size_t, const void *); 119 116
Note:
See TracChangeset
for help on using the changeset viewer.