summaryrefslogtreecommitdiff
path: root/gr-trellis/src/lib/trellis_api.h
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-07-22 11:55:52 -0700
committerJosh Blum <josh@joshknows.com>2011-07-22 11:55:52 -0700
commit17ef212c684e13e744a4e4258f7fed2dcbc9a5be (patch)
treeeacddfa5da89deb10a70d927560fabc00a24c828 /gr-trellis/src/lib/trellis_api.h
parent513febb1932f18f1123e530632032263c2322d9e (diff)
trellis: added symbol visibility defines to gr-trellis, builds on MSVC and linux
Diffstat (limited to 'gr-trellis/src/lib/trellis_api.h')
-rw-r--r--gr-trellis/src/lib/trellis_api.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/gr-trellis/src/lib/trellis_api.h b/gr-trellis/src/lib/trellis_api.h
new file mode 100644
index 0000000000..c09b340d6d
--- /dev/null
+++ b/gr-trellis/src/lib/trellis_api.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2011 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef INCLUDED_TRELLIS_API_H
+#define INCLUDED_TRELLIS_API_H
+
+#include <gruel/attributes.h>
+
+#ifdef gnuradio_trellis_EXPORTS
+# define TRELLIS_API __GR_ATTR_EXPORT
+#else
+# define TRELLIS_API __GR_ATTR_IMPORT
+#endif
+
+#endif /* INCLUDED_TRELLIS_API_H */