* Use our own time-based UUID generation functions, to help eliminate potential compiling issues.

This commit is contained in:
Justin Maggard
2009-09-01 02:54:20 +00:00
parent a78c7c9077
commit 25861ebf92
11 changed files with 332 additions and 91 deletions

16
uuid.h Normal file
View File

@ -0,0 +1,16 @@
/* UUID generation functions
*
* Project : minidlna
* Website : http://sourceforge.net/projects/minidlna/
* Author : Justin Maggard
* Copyright (c) 2009 Justin Maggard
* This software is subject to the conditions detailed in the
* LICENCE file provided in this distribution.
* */
#ifndef __UUID_H__
#define __UUID_H__
int
get_uuid_string(char *buf);
#endif