reactos/lib/fslib/ext2lib/Uuid.c
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

25 lines
521 B
C

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