reactos/lib/fslib/ext2lib/Uuid.c
Art Yerkes c501d8112c Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
2008-08-01 11:32:26 +00:00

26 lines
541 B
C

/*
* PROJECT: Mke2fs
* FILE: Timer.c
* PROGRAMMER: Matt Wu <mattwu@163.com>
* HOMEPAGE: http://ext2.yeah.net
*/
/* INCLUDES **************************************************************/
#include "windows.h"
#include "types.h"
/* DEFINITIONS ***********************************************************/
/* FUNCTIONS *************************************************************/
void uuid_generate(__u8 * uuid)
{
#if 0
UuidCreate((UUID *) uuid);
#else
RtlZeroMemory(uuid, 16);
#endif
}