Merge pull request #23 from libertyernie/master

Small fixes for Visual Studio
This commit is contained in:
Chris Moeller 2015-08-13 00:27:40 -07:00
commit 8104fb0c4d
3 changed files with 9 additions and 2 deletions

View File

@ -979,5 +979,8 @@
<ClCompile Include="meta\g1l.c">
<Filter>meta\Source Files</Filter>
</ClCompile>
<ClCompile Include="coding\g719_decoder.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>

View File

@ -7,7 +7,11 @@
#define _STREAMTYPES_H
#ifdef _MSC_VER
#if (_MSC_VER >= 1600)
#include <stdint.h>
#else
#include <pstdint.h>
#endif
#define inline _inline
#define strcasecmp _stricmp
#define snprintf _snprintf

View File

@ -1121,7 +1121,7 @@ int get_vgmstream_frame_size(VGMSTREAM * vgmstream) {
case coding_G7221C:
case coding_G7221:
#endif
#ifdef VGM_USE_G719:
#ifdef VGM_USE_G719
case coding_G719:
#endif
#ifdef VGM_USE_MAIATRAC3PLUS