diff --git a/src/cdi_uuid.h b/src/cdi_uuid.h index e55d3a8959c4abd9c4393d1367ee78eddd3b4dc3..cbb3071899d9434c23eb65d195c90400b4863811 100644 --- a/src/cdi_uuid.h +++ b/src/cdi_uuid.h @@ -24,7 +24,9 @@ int cdiUUIDIsNull(const unsigned char uuid[]) return isNull; } +#ifndef _WIN32 void cdiCreateUUID(unsigned char uuid[CDI_UUID_SIZE]); +#endif int cdiUUID2Str(const unsigned char uuid[], char uuidstr[]); int cdiStr2UUID(const char *uuidstr, unsigned char uuid[]); diff --git a/src/util.c b/src/util.c index 7eada35c9d6a99e63190757c9da6c3011af3e68e..df97d6a0cc6fdafd74a53c62f8848022d6c3c771 100644 --- a/src/util.c +++ b/src/util.c @@ -100,6 +100,7 @@ cdiUnescapeSpaces(const char *string, const char **outStringEnd) return result; } +#ifndef _WIN32 #if defined(HAVE_DECL_UUID_GENERATE) && defined(HAVE_UUID_UUID_H) #ifdef HAVE_SYS_TIME_H #include <sys/time.h> @@ -252,6 +253,7 @@ cdiCreateUUID(unsigned char *uuid) #endif } #endif +#endif /* * Local Variables: