]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/GenCapsuleHdr/CreateGuid.c
05234e8e7c7a240c7c653aa0c2de0a10967d7569
[mirror_edk2.git] / Tools / Source / TianoTools / GenCapsuleHdr / CreateGuid.c
1 /*++
2
3 Copyright (c) 2003 Intel Corporation. All rights reserved
4 This software and associated documentation (if any) is furnished
5 under a license and may only be used or copied in accordance
6 with the terms of the license. Except as permitted by such
7 license, no part of this software or documentation may be
8 reproduced, stored in a retrieval system, or transmitted in any
9 form or by any means without the express written consent of
10 Intel Corporation.
11
12
13 Module Name:
14
15 CreateGuid.c
16
17 Abstract:
18
19 Library routine to create a GUID
20
21 --*/
22
23 #include <windows.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <stdlib.h>
27 #include <ctype.h>
28
29 void
30 CreateGuid (
31 GUID *Guid
32 )
33 /*++
34
35 Routine Description:
36
37 GC_TODO: Add function description
38
39 Arguments:
40
41 Guid - GC_TODO: add argument description
42
43 Returns:
44
45 GC_TODO: add return values
46
47 --*/
48 {
49 CoCreateGuid (Guid);
50 }