oslibs: macosx, windows: recompile libopusfile using latest stable

v0.3 release. (only a windows code change and a few extra comments
in opusfile.h header since the previous build.)

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@866 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2013-08-08 12:21:40 +00:00
parent ab20774ddf
commit b5b1bc07e1
4 changed files with 16 additions and 0 deletions

View File

@ -630,6 +630,10 @@ struct OpusFileCallbacks{
If there is an error opening the file, nothing will be
filled in here.
\param _path The path to the file to open.
On Windows, this string must be UTF-8 (to allow access to
files whose names cannot be represented in the current
MBCS code page).
All other systems use the native character encoding.
\param _mode The mode to open the file in.
\return A stream handle to use with the callbacks, or <code>NULL</code> on
error.*/
@ -663,6 +667,10 @@ OP_WARN_UNUSED_RESULT void *op_fdopen(OpusFileCallbacks *_cb,
If there is an error opening the file, nothing will be
filled in here.
\param _path The path to the file to open.
On Windows, this string must be UTF-8 (to allow access
to files whose names cannot be represented in the
current MBCS code page).
All other systems use the native character encoding.
\param _mode The mode to open the file in.
\param _stream A stream previously returned by op_fopen(), op_fdopen(),
or op_freopen().

View File

@ -630,6 +630,10 @@ struct OpusFileCallbacks{
If there is an error opening the file, nothing will be
filled in here.
\param _path The path to the file to open.
On Windows, this string must be UTF-8 (to allow access to
files whose names cannot be represented in the current
MBCS code page).
All other systems use the native character encoding.
\param _mode The mode to open the file in.
\return A stream handle to use with the callbacks, or <code>NULL</code> on
error.*/
@ -663,6 +667,10 @@ OP_WARN_UNUSED_RESULT void *op_fdopen(OpusFileCallbacks *_cb,
If there is an error opening the file, nothing will be
filled in here.
\param _path The path to the file to open.
On Windows, this string must be UTF-8 (to allow access
to files whose names cannot be represented in the
current MBCS code page).
All other systems use the native character encoding.
\param _mode The mode to open the file in.
\param _stream A stream previously returned by op_fopen(), op_fdopen(),
or op_freopen().