part.h (7f49ce7a0b5f0d501d233308d73ccb1bf191a68b) part.h (124003d5870a2da22648cfd8d9a71fda4f0d64a7)
1/*-
2 * Copyright (c) 2012 Andrey V. Elsukov <ae@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

47 PART_FREEBSD_BOOT,
48 PART_FREEBSD_UFS,
49 PART_FREEBSD_ZFS,
50 PART_FREEBSD_SWAP,
51 PART_FREEBSD_VINUM,
52 PART_LINUX,
53 PART_LINUX_SWAP,
54 PART_DOS,
1/*-
2 * Copyright (c) 2012 Andrey V. Elsukov <ae@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

47 PART_FREEBSD_BOOT,
48 PART_FREEBSD_UFS,
49 PART_FREEBSD_ZFS,
50 PART_FREEBSD_SWAP,
51 PART_FREEBSD_VINUM,
52 PART_LINUX,
53 PART_LINUX_SWAP,
54 PART_DOS,
55 PART_ISO9660
55 PART_ISO9660,
56 PART_APFS
56};
57
58struct ptable_entry {
59 uint64_t start;
60 uint64_t end;
61 int index;
62 enum partition_type type;
63};

--- 21 unchanged lines hidden ---
57};
58
59struct ptable_entry {
60 uint64_t start;
61 uint64_t end;
62 int index;
63 enum partition_type type;
64};

--- 21 unchanged lines hidden ---