Win32 cleanups for aiff support.

This commit is contained in:
Ron Pedde 2006-06-13 05:49:22 +00:00
parent 1948eef43d
commit 0b9505e63b
3 changed files with 13 additions and 1 deletions

View File

@ -27,6 +27,8 @@
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include "err.h"
#include "mp3-scanner.h"
@ -122,7 +124,7 @@ int scan_get_aifinfo(char *filename, MP3FILE *pmp3) {
int done=0;
AIF_CHUNK_HEADER chunk;
AIF_IFF_HEADER iff_header;
size_t current_pos = 0;
long current_pos = 0;
DPRINTF(E_DBG,L_SCAN,"Getting AIFF file info\n");

View File

@ -32,6 +32,13 @@
# define FALSE 0
#endif
typedef UINT8 uint8_t;
typedef INT8 int8_t;
typedef UINT16 uint16_t;
typedef INT16 int16_t;
typedef UINT32 uint32_t;
typedef INT32 int32_t;
/* Funtion fixups */
#define snprintf _snprintf
#define vsnprintf _vsnprintf

View File

@ -186,6 +186,9 @@
<File
RelativePath="..\src\scan-aac.c">
</File>
<File
RelativePath="..\src\scan-aif.c">
</File>
<File
RelativePath="..\src\scan-flac.c">
</File>