summaryrefslogtreecommitdiff
path: root/include/FLAC++
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2014-06-28 09:17:26 +1000
committerErik de Castro Lopo <erikd@mega-nerd.com>2014-06-28 09:17:32 +1000
commitdb1619d4f36801d6178ccf45d32a4f58008eba3c (patch)
tree032f8caf83b9c137a3e6e6dd7355d55f12ea6e7a /include/FLAC++
parent46bedb58d31ddcbc7621ae3f1c83123c96bbdf39 (diff)
downloadflac-db1619d4f36801d6178ccf45d32a4f58008eba3c.tar.gz
Underscore fixes.
* Replace _declspec with __declspec. * Replace __wgetmainargs_ with __wgetmainargs_t and __wgetmainargs with wgetmainargs because identifiers with leading underscores are reserved for the compiler. Patch-from: lvqcl <lvqcl.mail@gmail.com>
Diffstat (limited to 'include/FLAC++')
-rw-r--r--include/FLAC++/export.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/FLAC++/export.h b/include/FLAC++/export.h
index 11c09e62..7621f647 100644
--- a/include/FLAC++/export.h
+++ b/include/FLAC++/export.h
@@ -61,9 +61,9 @@
#elif defined(_MSC_VER)
#ifdef FLACPP_API_EXPORTS
-#define FLACPP_API _declspec(dllexport)
+#define FLACPP_API __declspec(dllexport)
#else
-#define FLACPP_API _declspec(dllimport)
+#define FLACPP_API __declspec(dllimport)
#endif
#elif defined(FLAC__USE_VISIBILITY_ATTR)