| ... | ... | @@ -49,11 +49,11 @@ pub const FileProtocol = extern struct { |
| 49 | 49 | return self._set_position(self, position); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | | pub fn getInfo(self: *const FileProtocol, information_type: *align(8) Guid, buffer_size: *usize, buffer: [*]u8) Status { |
| 52 | pub fn getInfo(self: *const FileProtocol, information_type: *align(8) const Guid, buffer_size: *usize, buffer: [*]u8) Status { |
| 53 | 53 | return self._get_info(self, information_type, buffer_size, buffer); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | | pub fn setInfo(self: *const FileProtocol, information_type: *align(8) Guid, buffer_size: usize, buffer: [*]const u8) Status { |
| 56 | pub fn setInfo(self: *const FileProtocol, information_type: *align(8) const Guid, buffer_size: usize, buffer: [*]const u8) Status { |
| 57 | 57 | return self._set_info(self, information_type, buffer_size, buffer); |
| 58 | 58 | } |
| 59 | 59 | |