Changeset 4


Ignore:
Timestamp:
08/12/06 16:22:51 (18 years ago)
Author:
zorg
Message:

Added missing rename for 1.2

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/include/mpcdec/mpcdec.h

    r3 r4  
    3333*/
    3434
    35 /// \file musepack.h
    36 /// Top level include file for libmusepack.
     35/// \file mpcdec.h
     36/// Top level include file for libmpcdec.
    3737
    38 #ifndef _musepack_h_
    39 #define _musepack_h_
     38#ifndef _mpcdec_h_
     39#define _mpcdec_h_
    4040
    4141#ifdef __cplusplus
     
    4646#include <stdlib.h>
    4747#include <string.h>
    48 #include <math.h>
    4948
    50 #include "musepack/config_types.h"
    51 #include "musepack/decoder.h"
    52 #include "musepack/math.h"
    53 #include "musepack/reader.h"
    54 #include "musepack/streaminfo.h"
     49#ifndef WIN32
     50#include "mpcdec/config_types.h"
     51#else
     52#include "mpcdec/config_win32.h"
     53#endif
     54
     55#include "decoder.h"
     56#include "math.h"
     57#include "reader.h"
     58#include "streaminfo.h"
    5559   
    5660enum {
     
    9599/// \param si streaminfo structure indicating format of source stream
    96100/// \return TRUE if decoder was initalized successfully, FALSE otherwise   
    97 BOOL mpc_decoder_initialize(mpc_decoder *d, mpc_streaminfo *si);
     101mpc_bool_t mpc_decoder_initialize(mpc_decoder *d, mpc_streaminfo *si);
    98102
    99103/// Sets decoder sample scaling factor.  All decoded samples will be multiplied
     
    117121
    118122/// Seeks to the specified sample in the source stream.
    119 BOOL mpc_decoder_seek_sample(mpc_decoder *d, mpc_int64_t destsample);
     123mpc_bool_t mpc_decoder_seek_sample(mpc_decoder *d, mpc_int64_t destsample);
    120124
    121125/// Seeks to specified position in seconds in the source stream.
    122 BOOL mpc_decoder_seek_seconds(mpc_decoder *d, double seconds);
     126mpc_bool_t mpc_decoder_seek_seconds(mpc_decoder *d, double seconds);
    123127
    124128#ifdef __cplusplus
     
    126130#endif // __cplusplus
    127131
    128 #endif // _musepack_h_
     132#endif // _mpcdec_h_
Note: See TracChangeset for help on using the changeset viewer.