]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/CodeTools/TianoTools/GenCapsuleHdr/CreateGuid.c
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / CodeTools / TianoTools / GenCapsuleHdr / CreateGuid.c
CommitLineData
d25c4bf0 1/*++\r
2\r
ad1f8df0 3Copyright (c) 2004-2006 Intel Corporation. All rights reserved\r
4This program and the accompanying materials are licensed and made available \r
5under the terms and conditions of the BSD License which accompanies this \r
6distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
d25c4bf0 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