diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-06-12 00:43:43 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-06-12 00:43:43 +0000 |
| commit | c4ac4f652c0a3646ee12c9d947e6eada70315ebb (patch) | |
| tree | d9823d2b51e427011ed853564c5a95c05e8b8605 | |
| parent | d4551542c63d0fc29bdef1f88cecb114c883d49a (diff) | |
| download | lasso-c4ac4f652c0a3646ee12c9d947e6eada70315ebb.tar.gz lasso-c4ac4f652c0a3646ee12c9d947e6eada70315ebb.tar.xz lasso-c4ac4f652c0a3646ee12c9d947e6eada70315ebb.zip | |
Core: move lasso_strerror declaration to errors.h
| -rw-r--r-- | lasso/errors.h | 4 | ||||
| -rw-r--r-- | lasso/xml/xml.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lasso/errors.h b/lasso/errors.h index c306feaa..6dd2b461 100644 --- a/lasso/errors.h +++ b/lasso/errors.h @@ -36,6 +36,10 @@ * <para><emphasis>Beware that this convention is not always well followed.</emphasis></para> */ +#include "./export.h" + +LASSO_EXPORT const char* lasso_strerror(int error_code); + /** * LASSO_ERROR_UNDEFINED: * diff --git a/lasso/xml/xml.h b/lasso/xml/xml.h index b6005f14..9727d566 100644 --- a/lasso/xml/xml.h +++ b/lasso/xml/xml.h @@ -170,8 +170,6 @@ LASSO_EXPORT LassoMessageFormat lasso_node_init_from_message(LassoNode *node, co LASSO_EXPORT gboolean lasso_node_init_from_query(LassoNode *node, const char *query); LASSO_EXPORT int lasso_node_init_from_xml(LassoNode *node, xmlNode *xmlnode); -LASSO_EXPORT const char* lasso_strerror(int error_code); - LASSO_EXPORT void lasso_register_dst_service(const char *prefix, const char *href); LASSO_EXPORT char* lasso_get_prefix_for_dst_service_href(const char *href); |
