efipart.h (7747001b125d7bdc64fa4b06fa4d6b940e38453f) efipart.h (5b990a9463bc31358684aa1f363ab131bd47c673)
1/* $FreeBSD$ */
2#ifndef _EFI_PART_H
3#define _EFI_PART_H
4
5/*++
6
7Copyright (c) 1999 - 2002 Intel Corporation. All rights reserved
8This software and associated documentation (if any) is furnished

--- 4 unchanged lines hidden (view full) ---

13form or by any means without the express written consent of
14Intel Corporation.
15
16Module Name:
17
18 efipart.h
19
20Abstract:
1/* $FreeBSD$ */
2#ifndef _EFI_PART_H
3#define _EFI_PART_H
4
5/*++
6
7Copyright (c) 1999 - 2002 Intel Corporation. All rights reserved
8This software and associated documentation (if any) is furnished

--- 4 unchanged lines hidden (view full) ---

13form or by any means without the express written consent of
14Intel Corporation.
15
16Module Name:
17
18 efipart.h
19
20Abstract:
21 Info about disk partitions and Main Boot Records
21 Info about disk partitions and Master Boot Records
22
23
24
25
26Revision History
27
28--*/
29

--- 27 unchanged lines hidden (view full) ---

57
58#define MAX_MBR_PARTITIONS 4
59typedef struct {
60 UINT8 BootStrapCode[440];
61 UINT8 UniqueMbrSignature[4];
62 UINT8 Unknown[2];
63 MBR_PARTITION_RECORD Partition[MAX_MBR_PARTITIONS];
64 UINT16 Signature;
22
23
24
25
26Revision History
27
28--*/
29

--- 27 unchanged lines hidden (view full) ---

57
58#define MAX_MBR_PARTITIONS 4
59typedef struct {
60 UINT8 BootStrapCode[440];
61 UINT8 UniqueMbrSignature[4];
62 UINT8 Unknown[2];
63 MBR_PARTITION_RECORD Partition[MAX_MBR_PARTITIONS];
64 UINT16 Signature;
65} MAIN_BOOT_RECORD;
65} MASTER_BOOT_RECORD;
66#pragma pack()
67
68
69#endif
66#pragma pack()
67
68
69#endif