summaryrefslogtreecommitdiff
path: root/src/libmusepack/xine_decoder.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-01-30 14:41:34 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-01-30 14:41:34 +0000
commite2ea766a40e939d5a21431e64153c10c40ee48d1 (patch)
tree05892bff9ec9cfdad24a2add7ad5eb3b38ffd00e /src/libmusepack/xine_decoder.c
parent98ec149da4451676a744ac6973027ed741c4708b (diff)
downloadxine-lib-e2ea766a40e939d5a21431e64153c10c40ee48d1.tar.gz
xine-lib-e2ea766a40e939d5a21431e64153c10c40ee48d1.tar.bz2
**BUGFIX**
Import WIN32 compile fix from musepack SVN. CVS patchset: 7372 CVS date: 2005/01/30 14:41:34
Diffstat (limited to 'src/libmusepack/xine_decoder.c')
-rw-r--r--src/libmusepack/xine_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmusepack/xine_decoder.c b/src/libmusepack/xine_decoder.c
index 2e9e53f38..6d862d4c7 100644
--- a/src/libmusepack/xine_decoder.c
+++ b/src/libmusepack/xine_decoder.c
@@ -23,7 +23,7 @@
* 32bit float output
* Seeking??
*
- * $Id: xine_decoder.c,v 1.3 2005/01/29 18:33:53 jstembridge Exp $
+ * $Id: xine_decoder.c,v 1.4 2005/01/30 14:41:34 valtri Exp $
*/
#include <stdio.h>
@@ -106,7 +106,7 @@ static int32_t mpc_reader_read(void *data, void *ptr, int32_t size) {
}
/* Seeks to byte position offset. */
-static BOOL mpc_reader_seek(void *data, int32_t offset) {
+static mpc_bool_t mpc_reader_seek(void *data, int32_t offset) {
mpc_decoder_t *this = (mpc_decoder_t *) data;
lprintf("mpc_reader_seek: offset=%d\n", offset);
@@ -136,7 +136,7 @@ static int32_t mpc_reader_get_size(void *data) {
}
/* True if the stream is a seekable stream. */
-static BOOL mpc_reader_canseek(void *data) {
+static mpc_bool_t mpc_reader_canseek(void *data) {
lprintf("mpc_reader_canseek\n");
return TRUE;