mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-17 03:47:10 +01:00
Merge pull request #23 from libertyernie/master
Small fixes for Visual Studio
This commit is contained in:
commit
8104fb0c4d
@ -979,5 +979,8 @@
|
|||||||
<ClCompile Include="meta\g1l.c">
|
<ClCompile Include="meta\g1l.c">
|
||||||
<Filter>meta\Source Files</Filter>
|
<Filter>meta\Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="coding\g719_decoder.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -7,7 +7,11 @@
|
|||||||
#define _STREAMTYPES_H
|
#define _STREAMTYPES_H
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
#if (_MSC_VER >= 1600)
|
||||||
|
#include <stdint.h>
|
||||||
|
#else
|
||||||
#include <pstdint.h>
|
#include <pstdint.h>
|
||||||
|
#endif
|
||||||
#define inline _inline
|
#define inline _inline
|
||||||
#define strcasecmp _stricmp
|
#define strcasecmp _stricmp
|
||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
|
@ -1121,7 +1121,7 @@ int get_vgmstream_frame_size(VGMSTREAM * vgmstream) {
|
|||||||
case coding_G7221C:
|
case coding_G7221C:
|
||||||
case coding_G7221:
|
case coding_G7221:
|
||||||
#endif
|
#endif
|
||||||
#ifdef VGM_USE_G719:
|
#ifdef VGM_USE_G719
|
||||||
case coding_G719:
|
case coding_G719:
|
||||||
#endif
|
#endif
|
||||||
#ifdef VGM_USE_MAIATRAC3PLUS
|
#ifdef VGM_USE_MAIATRAC3PLUS
|
||||||
|
Loading…
Reference in New Issue
Block a user