cannam@86: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> cannam@86: <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> cannam@86: <title>FLAC: include/FLAC/callback.h Source File</title> cannam@86: <link href="doxygen.css" rel="stylesheet" type="text/css"> cannam@86: </head><body> cannam@86: <!-- Generated by Doxygen 1.4.2 --> cannam@86: <div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div> cannam@86: <div class="nav"> cannam@86: <a class="el" href="dir_000000.html">include</a> / <a class="el" href="dir_000002.html">FLAC</a></div> cannam@86: <h1>callback.h</h1><a href="callback_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/* libFLAC - Free Lossless Audio Codec library</span> cannam@86: 00002 <span class="comment"> * Copyright (C) 2004,2005,2006,2007 Josh Coalson</span> cannam@86: 00003 <span class="comment"> *</span> cannam@86: 00004 <span class="comment"> * Redistribution and use in source and binary forms, with or without</span> cannam@86: 00005 <span class="comment"> * modification, are permitted provided that the following conditions</span> cannam@86: 00006 <span class="comment"> * are met:</span> cannam@86: 00007 <span class="comment"> *</span> cannam@86: 00008 <span class="comment"> * - Redistributions of source code must retain the above copyright</span> cannam@86: 00009 <span class="comment"> * notice, this list of conditions and the following disclaimer.</span> cannam@86: 00010 <span class="comment"> *</span> cannam@86: 00011 <span class="comment"> * - Redistributions in binary form must reproduce the above copyright</span> cannam@86: 00012 <span class="comment"> * notice, this list of conditions and the following disclaimer in the</span> cannam@86: 00013 <span class="comment"> * documentation and/or other materials provided with the distribution.</span> cannam@86: 00014 <span class="comment"> *</span> cannam@86: 00015 <span class="comment"> * - Neither the name of the Xiph.org Foundation nor the names of its</span> cannam@86: 00016 <span class="comment"> * contributors may be used to endorse or promote products derived from</span> cannam@86: 00017 <span class="comment"> * this software without specific prior written permission.</span> cannam@86: 00018 <span class="comment"> *</span> cannam@86: 00019 <span class="comment"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</span> cannam@86: 00020 <span class="comment"> * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</span> cannam@86: 00021 <span class="comment"> * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR</span> cannam@86: 00022 <span class="comment"> * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR</span> cannam@86: 00023 <span class="comment"> * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,</span> cannam@86: 00024 <span class="comment"> * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,</span> cannam@86: 00025 <span class="comment"> * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR</span> cannam@86: 00026 <span class="comment"> * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF</span> cannam@86: 00027 <span class="comment"> * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING</span> cannam@86: 00028 <span class="comment"> * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</span> cannam@86: 00029 <span class="comment"> * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span> cannam@86: 00030 <span class="comment"> */</span> cannam@86: 00031 cannam@86: 00032 <span class="preprocessor">#ifndef FLAC__CALLBACK_H</span> cannam@86: 00033 <span class="preprocessor"></span><span class="preprocessor">#define FLAC__CALLBACK_H</span> cannam@86: 00034 <span class="preprocessor"></span> cannam@86: 00035 <span class="preprocessor">#include "ordinals.h"</span> cannam@86: 00036 <span class="preprocessor">#include <stdlib.h></span> <span class="comment">/* for size_t */</span> cannam@86: 00037 cannam@86: 00081 <span class="preprocessor">#ifdef __cplusplus</span> cannam@86: 00082 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> { cannam@86: 00083 <span class="preprocessor">#endif</span> cannam@86: 00084 <span class="preprocessor"></span> cannam@86: <a name="l00088"></a><a class="code" href="group__flac__callbacks.html#ga0">00088</a> <span class="keyword">typedef</span> <span class="keywordtype">void</span>* <a class="code" href="group__flac__callbacks.html#ga0">FLAC__IOHandle</a>; cannam@86: 00089 cannam@86: <a name="l00101"></a><a class="code" href="group__flac__callbacks.html#ga1">00101</a> <span class="keyword">typedef</span> size_t (*<a class="code" href="group__flac__callbacks.html#ga1">FLAC__IOCallback_Read</a>) (<span class="keywordtype">void</span> *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle); cannam@86: 00102 cannam@86: <a name="l00114"></a><a class="code" href="group__flac__callbacks.html#ga2">00114</a> <span class="keyword">typedef</span> size_t (*<a class="code" href="group__flac__callbacks.html#ga2">FLAC__IOCallback_Write</a>) (<span class="keyword">const</span> <span class="keywordtype">void</span> *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle); cannam@86: 00115 cannam@86: <a name="l00127"></a><a class="code" href="group__flac__callbacks.html#ga3">00127</a> <span class="keyword">typedef</span> int (*<a class="code" href="group__flac__callbacks.html#ga3">FLAC__IOCallback_Seek</a>) (FLAC__IOHandle handle, FLAC__int64 offset, <span class="keywordtype">int</span> whence); cannam@86: 00128 cannam@86: <a name="l00138"></a><a class="code" href="group__flac__callbacks.html#ga4">00138</a> <span class="keyword">typedef</span> FLAC__int64 (*<a class="code" href="group__flac__callbacks.html#ga4">FLAC__IOCallback_Tell</a>) (FLAC__IOHandle handle); cannam@86: 00139 cannam@86: <a name="l00149"></a><a class="code" href="group__flac__callbacks.html#ga5">00149</a> <span class="keyword">typedef</span> int (*<a class="code" href="group__flac__callbacks.html#ga5">FLAC__IOCallback_Eof</a>) (FLAC__IOHandle handle); cannam@86: 00150 cannam@86: <a name="l00159"></a><a class="code" href="group__flac__callbacks.html#ga6">00159</a> <span class="keyword">typedef</span> int (*<a class="code" href="group__flac__callbacks.html#ga6">FLAC__IOCallback_Close</a>) (FLAC__IOHandle handle); cannam@86: 00160 cannam@86: <a name="l00169"></a><a class="code" href="structFLAC____IOCallbacks.html">00169</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{ cannam@86: 00170 <a class="code" href="group__flac__callbacks.html#ga1">FLAC__IOCallback_Read</a> read; cannam@86: 00171 <a class="code" href="group__flac__callbacks.html#ga2">FLAC__IOCallback_Write</a> write; cannam@86: 00172 <a class="code" href="group__flac__callbacks.html#ga3">FLAC__IOCallback_Seek</a> seek; cannam@86: 00173 <a class="code" href="group__flac__callbacks.html#ga4">FLAC__IOCallback_Tell</a> tell; cannam@86: 00174 <a class="code" href="group__flac__callbacks.html#ga5">FLAC__IOCallback_Eof</a> eof; cannam@86: 00175 <a class="code" href="group__flac__callbacks.html#ga6">FLAC__IOCallback_Close</a> close; cannam@86: 00176 } <a class="code" href="structFLAC____IOCallbacks.html">FLAC__IOCallbacks</a>; cannam@86: 00177 cannam@86: 00178 <span class="comment">/* \} */</span> cannam@86: 00179 cannam@86: 00180 <span class="preprocessor">#ifdef __cplusplus</span> cannam@86: 00181 <span class="preprocessor"></span>} cannam@86: 00182 <span class="preprocessor">#endif</span> cannam@86: 00183 <span class="preprocessor"></span> cannam@86: 00184 <span class="preprocessor">#endif</span> cannam@86: </pre></div> cannam@86: <hr size="1"> cannam@86: <div class="copyright"> cannam@86: <!-- @@@ oh so hacky --> cannam@86: <table> cannam@86: <tr> cannam@86: <td align="left"> cannam@86: Copyright (c) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson cannam@86: </td> cannam@86: <td width="1%" align="right"> cannam@86: <a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=13478&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" /></a> cannam@86: </td> cannam@86: </tr> cannam@86: </table> cannam@86: </div> cannam@86: <!-- Copyright (c) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson --> cannam@86: <!-- Permission is granted to copy, distribute and/or modify this document --> cannam@86: <!-- under the terms of the GNU Free Documentation License, Version 1.1 --> cannam@86: <!-- or any later version published by the Free Software Foundation; --> cannam@86: <!-- with no invariant sections. --> cannam@86: <!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html --> cannam@86: </body> cannam@86: </html>