17 lines
368 B
C
17 lines
368 B
C
/* 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
|