[][src]Type Definition flac_sys::FLAC__IOCallback_Tell

type FLAC__IOCallback_Tell = Option<unsafe extern "C" fn(handle: FLAC__IOHandle) -> FLAC__int64>;

Signature for the tell callback. The signature and semantics mostly match POSIX ftell() WITH ONE IMPORTANT EXCEPTION: the offset is a 64-bit type whereas ftell() is generally 'long' and 32-bits wide.

\param handle The handle to the data source. \retval FLAC__int64 The current position on success, \c -1 on error.