diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-03-12 09:26:38 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-03-12 09:31:24 -0700 |
commit | 9ef789c8cca6b3439ecce5fc7aa71d3b073acfd7 (patch) | |
tree | 924a957a7e587f36ed8cd1bddd0f8cbf2dcff342 /gr-fcd/include/fcd/fcd_api.h | |
parent | 72576bd2d87b83ccc1661b695278e0dee8fe21a4 (diff) |
fcd: added FCD_API to code
Diffstat (limited to 'gr-fcd/include/fcd/fcd_api.h')
-rw-r--r-- | gr-fcd/include/fcd/fcd_api.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gr-fcd/include/fcd/fcd_api.h b/gr-fcd/include/fcd/fcd_api.h new file mode 100644 index 0000000000..d6d1bd31f1 --- /dev/null +++ b/gr-fcd/include/fcd/fcd_api.h @@ -0,0 +1,33 @@ +/* + * Copyright 2012 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_FCD_API_H +#define INCLUDED_FCD_API_H + +#include <gruel/attributes.h> + +#ifdef gnuradio_pager_EXPORTS +# define FCD_API __GR_ATTR_EXPORT +#else +# define FCD_API __GR_ATTR_IMPORT +#endif + +#endif /* INCLUDED_FCD_API_H */ |