reverted the uuid functions export, too complicated to export them properly in the upnp.so file.

This commit is contained in:
Thijs Schreijer 2013-04-27 09:30:29 +02:00
parent 549313de44
commit 31acda9688
2 changed files with 4 additions and 9 deletions

View File

@ -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

View File

@ -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,
/*! . */