This commit is contained in:
Mario Hüttel 2019-11-28 18:24:26 +01:00
parent 7721a40912
commit 23ba7c0136

View File

@ -62,14 +62,14 @@
/** /**
* @brief Define for declaring the exported functions. * @brief Define for declaring the exported functions.
* *
* This not only helps with the declaration but also makes the symbols visible, so they can be called form outside the library * This not only helps with the declaration but also makes the symbols visible, so they can be called from outside the library
*/ */
#define EXPORTED_FUNC_DECL(FUNC) EXPORT_FUNC FUNC #define EXPORTED_FUNC_DECL(FUNC) EXPORT_FUNC FUNC
/** /**
* @brief Define for declaring exported variables * @brief Define for declaring exported variables
* *
* This not only helps with the declaration but also makes the symbols visible, so they can be accessed form outside the library * This not only helps with the declaration but also makes the symbols visible, so they can be accessed from outside the library
*/ */
#define EXPORTED_VAR_DECL(VAR) EXPORT_VAR VAR #define EXPORTED_VAR_DECL(VAR) EXPORT_VAR VAR