summaryrefslogtreecommitdiff
path: root/gr-audio/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-04-24 19:02:18 -0700
committerJosh Blum <josh@joshknows.com>2011-04-24 19:02:18 -0700
commitbab5e5cab6562b0c163e8c925e76e84a12eeff20 (patch)
tree80c3ad5ab1ba6cba74e498f922bc9fd7acf4f6cf /gr-audio/include
parent88f157a1a71e0a3603a912e437ad5d2c07ffc8b9 (diff)
audio: filled in the GR_AUDIO_API macro (since we now have gruel/attributes.h)
Diffstat (limited to 'gr-audio/include')
-rw-r--r--gr-audio/include/gr_audio_api.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gr-audio/include/gr_audio_api.h b/gr-audio/include/gr_audio_api.h
index b21819bab4..65782d3081 100644
--- a/gr-audio/include/gr_audio_api.h
+++ b/gr-audio/include/gr_audio_api.h
@@ -22,10 +22,12 @@
#ifndef INCLUDED_GR_AUDIO_API_H
#define INCLUDED_GR_AUDIO_API_H
+#include <gruel/attributes.h>
+
#ifdef gnuradio_audio_EXPORTS
-# define GR_AUDIO_API //FIXME needs attributes defines
+# define GR_AUDIO_API __GR_ATTR_EXPORT
#else
-# define GR_AUDIO_API //FIXME needs attributes defines
+# define GR_AUDIO_API __GR_ATTR_IMPORT
#endif
#endif /* INCLUDED_GR_AUDIO_API_H */