mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 06:13:05 +00:00
26 lines
566 B
C
26 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
|
||
|
}
|