From 31acda9688797d7825349b9719dbac6d2de57776 Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Sat, 27 Apr 2013 09:30:29 +0200 Subject: [PATCH] reverted the uuid functions export, too complicated to export them properly in the upnp.so file. --- upnp/Makefile.am | 5 ----- upnp/src/inc/uuid.h | 8 ++++---- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/upnp/Makefile.am b/upnp/Makefile.am index 1d5523a..96080fd 100644 --- a/upnp/Makefile.am +++ b/upnp/Makefile.am @@ -167,11 +167,6 @@ libupnp_la_SOURCES += \ src/uuid/md5.c \ src/uuid/sysdep.c \ src/uuid/uuid.c -upnpinclude_HEADERS += \ - src/inc/uuid.h \ - src/inc/md5.h \ - src/inc/global.h \ - src/inc/sysdep.h endif diff --git a/upnp/src/inc/uuid.h b/upnp/src/inc/uuid.h index 099160b..93f5681 100644 --- a/upnp/src/inc/uuid.h +++ b/upnp/src/inc/uuid.h @@ -41,14 +41,14 @@ typedef struct _uuid_upnp { /*! * \brief Generate a UUID. */ -EXPORT_SPEC int uuid_create( +int uuid_create( /*! . */ uuid_upnp * id); /*! * \brief Out will be xxxx-xx-xx-xx-xxxxxx format. */ -EXPORT_SPEC void uuid_unpack( +void uuid_unpack( /*! . */ uuid_upnp * u, /*! . */ @@ -57,7 +57,7 @@ EXPORT_SPEC void uuid_unpack( /*! * \brief Create a UUID using a "name" from a "name space" */ -EXPORT_SPEC void uuid_create_from_name( +void uuid_create_from_name( /*! Resulting UUID. */ uuid_upnp * uid, /*! UUID to serve as context, so identical names from different name @@ -78,7 +78,7 @@ EXPORT_SPEC void uuid_create_from_name( * * \note Lexical ordering is not temporal ordering! */ -EXPORT_SPEC int uuid_compare( +int uuid_compare( /*! . */ uuid_upnp * u1, /*! . */