summaryrefslogtreecommitdiff
path: root/gr-pager/lib/pager_api.h
diff options
context:
space:
mode:
authorJosh Blum2011-07-22 10:33:13 -0700
committerJosh Blum2011-07-22 10:33:13 -0700
commitec2d3a033616386dbf8f8b2e7010a4d0a5ec3132 (patch)
tree0aafe7f48bd6552cda48dd726b20ef70c305e3f9 /gr-pager/lib/pager_api.h
parentd760edf9fb851d97c972a69690b26114dd998157 (diff)
downloadgnuradio-ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132.tar.gz
gnuradio-ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132.tar.bz2
gnuradio-ec2d3a033616386dbf8f8b2e7010a4d0a5ec3132.zip
gr: added API macros for noaa and pager, also renamed the ones for digital and vocoder to be consistent
Diffstat (limited to 'gr-pager/lib/pager_api.h')
-rw-r--r--gr-pager/lib/pager_api.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/gr-pager/lib/pager_api.h b/gr-pager/lib/pager_api.h
new file mode 100644
index 000000000..4312c5ae3
--- /dev/null
+++ b/gr-pager/lib/pager_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_PAGER_API_H
+#define INCLUDED_PAGER_API_H
+
+#include <gruel/attributes.h>
+
+#ifdef gnuradio_pager_EXPORTS
+# define PAGER_API __GR_ATTR_EXPORT
+#else
+# define PAGER_API __GR_ATTR_IMPORT
+#endif
+
+#endif /* INCLUDED_PAGER_API_H */