File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 15
15
Now you can compare everything that is ` AsRef<str> ` (such as ` String ` and ` str `
16
16
from the standard library) to uefi strings. Please head to the documentation of
17
17
` EqStrUntilNul ` to find out limitations and further information.
18
+ - Added ` BootServices::image_handle ` to get the handle of the executing
19
+ image. The image is set automatically by the ` #[entry] ` macro; if a
20
+ program does not use that macro then it should call
21
+ ` BootServices::set_image_handle ` .
22
+ - Added ` BootServices::open_protocol_exclusive ` . This provides a safe
23
+ and convenient subset of ` open_protocol ` that can be used whenever a
24
+ resource doesn't need to be shared. In same cases sharing is useful
25
+ (e.g. you might want to draw to the screen using the graphics
26
+ protocol, but still allow stdout output to go to the screen as
27
+ well), and in those cases ` open_protocol ` can still be used.
18
28
19
29
### Changed
20
30
You can’t perform that action at this time.
0 commit comments