mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-26 19:40:24 +00:00
[Win32] Fix for MSVC
* A `_MSCVER` ha never been a built-in for the MSVC compiler. * Simply use the same `SF_COUNT_MAX` for all MSVC compilers.
This commit is contained in:
parent
60ea132bf3
commit
fe9971fa28
@ -345,7 +345,7 @@ typedef struct SNDFILE_tag SNDFILE ;
|
||||
** and the Microsoft compiler.
|
||||
*/
|
||||
|
||||
#if (defined (_MSCVER) || defined (_MSC_VER) && (_MSC_VER < 1310))
|
||||
#if defined (_MSC_VER)
|
||||
typedef __int64 sf_count_t ;
|
||||
#define SF_COUNT_MAX 0x7fffffffffffffffi64
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user