diff options
author | David Robillard <d@drobilla.net> | 2012-01-16 18:21:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-16 18:21:53 +0000 |
commit | 2d724f0e199f74201307cc161031afbd8dba4eb5 (patch) | |
tree | b6db75dbfa6e3d29823d64b9207232e61cfcc070 /serd/serd.h | |
parent | 80a8bad6790dd510577d0922287b8a3f60d89252 (diff) | |
download | serd-2d724f0e199f74201307cc161031afbd8dba4eb5.tar.gz serd-2d724f0e199f74201307cc161031afbd8dba4eb5.tar.bz2 serd-2d724f0e199f74201307cc161031afbd8dba4eb5.zip |
Support compilation as C++ under MSVC++
git-svn-id: http://svn.drobilla.net/serd/trunk@291 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'serd/serd.h')
-rw-r--r-- | serd/serd.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h index b67ddd3d..06e0af43 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -21,13 +21,12 @@ #ifndef SERD_SERD_H #define SERD_SERD_H -#include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #ifdef SERD_SHARED -# ifdef __WIN32__ +# ifdef _WIN32 # define SERD_LIB_IMPORT __declspec(dllimport) # define SERD_LIB_EXPORT __declspec(dllexport) # else @@ -45,6 +44,8 @@ #ifdef __cplusplus extern "C" { +#else +# include <stdbool.h> #endif /** |