We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f9e3d commit 1d667b1Copy full SHA for 1d667b1
1 file changed
src/BuildInterface.zig
@@ -185,6 +185,9 @@ const ContentWriter = struct {
185
if (part.name) |name| {
186
try cw.code.print(" name \"{f}\"\n", .{std.zig.fmtString(name)});
187
}
188
+ if (part.part_guid) |pg| {
189
+ try cw.code.print(" guid \"{s}\"", .{&pg});
190
+ }
191
if (part.offset) |offset| {
192
try cw.code.print(" offset {d}\n", .{offset});
193
@@ -416,6 +419,7 @@ pub const GptPartTable = struct {
416
419
guid: [36]u8,
417
420
},
418
421
name: ?[]const u8 = null,
422
+ part_guid: ?[36]u8 = null,
423
size: ?u64 = null,
424
offset: ?u64 = null,
425
data: Content,
0 commit comments