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