#include <ipod/ipod_io.h>
Go to the source code of this file.
Functions | |
int | ipod_io_file_read (void *data, size_t maxDataLen, size_t *dataRead, void *userData) |
Read data from this device. | |
int | ipod_io_file_write (void *data, size_t dataLen, size_t *dataWritten, void *userData) |
Write data to this device. | |
int | ipod_io_file_tell (size_t *offset, void *userData) |
The current location of the device mark. | |
int | ipod_io_file_seek (size_t offset, void *userData) |
Seeks the device to the given location. | |
int | ipod_io_file_length (size_t *offset, void *userData) |
The total amount of data on the device. | |
ipod_io | ipod_io_file_new (FILE *file) |
Create a new device for the given FILE object. | |
void | ipod_io_file_free (ipod_io io) |
Close the file, free the device. |
|
Close the file, free the device.
|
|
The total amount of data on the device.
|
|
Create a new device for the given FILE object.
|
|
Read data from this device.
|
|
Seeks the device to the given location.
|
|
The current location of the device mark.
|
|
Write data to this device.
|