mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
25 lines
521 B
C
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
|
|
}
|