We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
in wave.h file, line 34-37, a type mistake happenned which made Macro
#if defined(_MSC_VER) #define WAVE_API __declspec(dllexport) #else
to
#if defined(_MSV_VER) #define WAVE_API __declspec(dllexport) #else
it seems that MSC_VER was misspelled as MSV_VER, cause a compiler error on windwos
The text was updated successfully, but these errors were encountered:
This lib does a small but nice work. another suggest is the macro which detects BIG-ENDIAN or LITTLE-ENDIAN was also broken on windows
Sorry, something went wrong.
fix(windows)!: fix preprocessor testing on Windows (#13)
8dfc2fe
fix(endian): fix endian testing (#13)
72bbb7b
Fixed in 72bbb7b.
No branches or pull requests
in wave.h file, line 34-37,
a type mistake happenned which made Macro
#if defined(_MSC_VER)
#define WAVE_API __declspec(dllexport)
#else
to
#if defined(_MSV_VER)
#define WAVE_API __declspec(dllexport)
#else
it seems that MSC_VER was misspelled as MSV_VER, cause a compiler error on windwos
The text was updated successfully, but these errors were encountered: