diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-03-27 14:56:36 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-03-27 14:56:36 +0000 |
commit | f5423497d2d4718fc3385003329a135ee8078615 (patch) | |
tree | 0669b31b8ca90444b4e92c7c239568d2729c11c9 /src/fft.h | |
parent | 0bb0f22ddec2de97f7938916c9cf278b99e6a9e7 (diff) | |
parent | 8e718bfda48218dc4f007cad578d308227f2bb41 (diff) | |
download | LibXtract-f5423497d2d4718fc3385003329a135ee8078615.tar.gz LibXtract-f5423497d2d4718fc3385003329a135ee8078615.tar.bz2 LibXtract-f5423497d2d4718fc3385003329a135ee8078615.zip |
Merge pull request #58 from q-depot/master
add VC2012 project to compile static and dynamic lib, also fix some C
Diffstat (limited to 'src/fft.h')
-rw-r--r-- | src/fft.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -28,7 +28,16 @@ #include <config.h> #endif -#include <stdbool.h> +#ifdef _MSC_VER + #define USE_OOURA + #ifndef __cplusplus + typedef int bool; + #define false 0 + #define true 1 + #endif +#else + #include <stdbool.h> +#endif #ifdef USE_OOURA #include "ooura/fftsg.h" |