57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/** Seek to the current location + offset. */
OFSeekCurrent,
/** Seek to the specified byte. */
OFSeekEnd
} OFSeekWhence;
/**
* @class OFSeekableStream OFSeekableStream.h ObjFW/OFSeekableStream.h
*
* @brief A stream that supports seeking.
*
* @note If you want to subclass this, override
* @ref lowlevelSeekToOffset:whence:. OFSeekableStream uses this method
* and makes it work together with the caching of OFStream. If you
* override this methods without the `lowlevel` prefix, you *will* break
|
|
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/** Seek to the current location + offset. */
OFSeekCurrent,
/** Seek to the specified byte. */
OFSeekEnd
} OFSeekWhence;
/**
* @class OFSeekableStream OFSeekableStream.h ObjFW/ObjFW.h
*
* @brief A stream that supports seeking.
*
* @note If you want to subclass this, override
* @ref lowlevelSeekToOffset:whence:. OFSeekableStream uses this method
* and makes it work together with the caching of OFStream. If you
* override this methods without the `lowlevel` prefix, you *will* break
|