- DBGKD_WAIT_STATE_CHANGE64 is used in KD protocol 5, not number 6 that we use. Proto...
[reactos.git] / reactos / lib / fslib / ext2lib / Uuid.c
1 /*
2 * PROJECT: Mke2fs
3 * FILE: Timer.c
4 * PROGRAMMER: Matt Wu <mattwu@163.com>
5 * HOMEPAGE: http://ext2.yeah.net
6 */
7
8 /* INCLUDES **************************************************************/
9
10 #include "windows.h"
11 #include "types.h"
12
13 /* DEFINITIONS ***********************************************************/
14
15
16 /* FUNCTIONS *************************************************************/
17
18 void uuid_generate(__u8 * uuid)
19 {
20 #if 0
21 UuidCreate((UUID *) uuid);
22 #else
23 RtlZeroMemory(uuid, 16);
24 #endif
25 }