summaryrefslogtreecommitdiff
path: root/src/lib/efreet/efreet_uri.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/efreet/efreet_uri.h')
-rw-r--r--src/lib/efreet/efreet_uri.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/efreet/efreet_uri.h b/src/lib/efreet/efreet_uri.h
index 79bc2f3c1c..5c7905f9e2 100644
--- a/src/lib/efreet/efreet_uri.h
+++ b/src/lib/efreet/efreet_uri.h
@@ -38,7 +38,7 @@ struct Efreet_Uri
* @note The resulting string will contain the protocol and the path but not
* the hostname, as many apps doesn't handle it.
*/
-EAPI const char *efreet_uri_encode(Efreet_Uri *uri);
+EFREET_API const char *efreet_uri_encode(Efreet_Uri *uri);
/**
* @param val a valid uri string to parse
@@ -47,13 +47,13 @@ EAPI const char *efreet_uri_encode(Efreet_Uri *uri);
* hostname in the uri then the hostname parameter will be NULL. All the uri
* escaped chars will be converted to normal.
*/
-EAPI Efreet_Uri *efreet_uri_decode(const char *val);
+EFREET_API Efreet_Uri *efreet_uri_decode(const char *val);
/**
* @param uri The uri to free
* @brief Free the given uri structure.
*/
-EAPI void efreet_uri_free(Efreet_Uri *uri);
+EFREET_API void efreet_uri_free(Efreet_Uri *uri);
/**