reactos/lib/fslib/ext2lib/Uuid.c
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +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
}