Lines Matching refs:handle
56 * for the metadata interfaces to handle I/O.
85 /** This is the opaque handle type used by the callbacks. Typically
97 * \param handle The handle to the data source.
101 typedef size_t (*FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
110 * \param handle The handle to the data source.
114 typedef size_t (*FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
121 * \param handle The handle to the data source.
127 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
134 * \param handle The handle to the data source.
138 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);
145 * \param handle The handle to the data source.
149 typedef int (*FLAC__IOCallback_Eof) (FLAC__IOHandle handle);
155 * \param handle The handle to the data source.
159 typedef int (*FLAC__IOCallback_Close) (FLAC__IOHandle handle);