1 /* -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 8; -*- */ 2 3 #ifndef __LIBBURN_READ 4 #define __LIBBURN_READ 5 6 struct burn_drive; 7 struct burn_read_opts; 8 9 int burn_sector_length_read(struct burn_drive *d, 10 const struct burn_read_opts *o); 11 void burn_packet_process(struct burn_drive *d, unsigned char *data, 12 const struct burn_read_opts *o); 13 14 #endif /* __LIBBURN_READ */