reactos/reactos/lib/fslib/ext2lib/Uuid.c
Art Yerkes 395064be78 Ext2lib import by filip navara for use by usetup.
svn path=/branches/ext2/; revision=13010
2005-01-13 01:54:28 +00:00

25 lines
566 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
}