We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fdbc42a + 4710689 commit 2356270Copy full SHA for 2356270
uefi-raw/CHANGELOG.md
@@ -1,5 +1,7 @@
1
# uefi-raw - [Unreleased]
2
3
+## Changed
4
+- `maximum_capsule_size` of `query_capsule_capabilities` now takes a *mut u64 instead of a *mut usize.
5
6
# uefi-raw - 0.5.2 (2024-04-19)
7
uefi-raw/src/table/runtime.rs
@@ -66,7 +66,7 @@ pub struct RuntimeServices {
66
pub query_capsule_capabilities: unsafe extern "efiapi" fn(
67
capsule_header_array: *const *const CapsuleHeader,
68
capsule_count: usize,
69
- maximum_capsule_size: *mut usize,
+ maximum_capsule_size: *mut u64,
70
reset_type: *mut ResetType,
71
) -> Status,
72
0 commit comments