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