1eee59048SToomas Soome /** @file
2eee59048SToomas Soome   GUID has all zero values.
3eee59048SToomas Soome 
4eee59048SToomas Soome Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
5eee59048SToomas Soome This program and the accompanying materials are licensed and made available under
6eee59048SToomas Soome the terms and conditions of the BSD License that accompanies this distribution.
7eee59048SToomas Soome The full text of the license may be found at
8eee59048SToomas Soome http://opensource.org/licenses/bsd-license.php.
9eee59048SToomas Soome 
10eee59048SToomas Soome THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11eee59048SToomas Soome WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12eee59048SToomas Soome 
13eee59048SToomas Soome **/
14eee59048SToomas Soome 
15eee59048SToomas Soome #ifndef __ZERO_GUID_H__
16eee59048SToomas Soome #define __ZERO_GUID_H__
17eee59048SToomas Soome 
18eee59048SToomas Soome #define ZERO_GUID \
19eee59048SToomas Soome   { \
20eee59048SToomas Soome     0x0, 0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0} \
21eee59048SToomas Soome   }
22eee59048SToomas Soome 
23eee59048SToomas Soome extern EFI_GUID gZeroGuid;
24eee59048SToomas Soome 
25eee59048SToomas Soome #endif
26