| OLD | NEW |
| 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 * | 4 * |
| 5 * Defines EFI related structure. See more details in EFI 2.3 spec. | 5 * Defines EFI related structure. See more details in EFI 2.3 spec. |
| 6 * | 6 * |
| 7 * To download EFI standard, please visit UEFI homepage: | 7 * To download EFI standard, please visit UEFI homepage: |
| 8 * http://www.uefi.org/ | 8 * http://www.uefi.org/ |
| 9 */ | 9 */ |
| 10 #ifndef VBOOT_REFERENCE_CGPTLIB_GPT_H_ | 10 #ifndef VBOOT_REFERENCE_CGPTLIB_GPT_H_ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 typedef struct { | 80 typedef struct { |
| 81 Guid type; | 81 Guid type; |
| 82 Guid unique; | 82 Guid unique; |
| 83 uint64_t starting_lba; | 83 uint64_t starting_lba; |
| 84 uint64_t ending_lba; | 84 uint64_t ending_lba; |
| 85 uint64_t attributes; | 85 uint64_t attributes; |
| 86 uint16_t name[36]; /* UTF-16 encoded partition name */ | 86 uint16_t name[36]; /* UTF-16 encoded partition name */ |
| 87 } GptEntry; | 87 } GptEntry; |
| 88 | 88 |
| 89 #endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */ | 89 #endif /* VBOOT_REFERENCE_CGPTLIB_GPT_H_ */ |
| OLD | NEW |