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