#include <audiere.h>
Public Types | |
| enum | SeekMode |
Public Member Functions | |
| virtual int ADR_CALL | read (void *buffer, int size)=0 |
| virtual bool ADR_CALL | seek (int position, SeekMode mode)=0 |
| virtual int ADR_CALL | tell ()=0 |
This interface is not synchronized.
|
|
The different ways you can seek within a file. |
|
||||||||||||
|
Read size bytes from the file, storing them in buffer.
|
|
||||||||||||
|
Jump to a new position in the file, using the specified seek mode. Remember: if mode is END, the position must be negative, to seek backwards from the end of the file into its contents. If the seek fails, the current position is undefined.
|
|
|
Get current position within the file.
|
1.4.6-NO