summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSlendi <slendi@socopon.com>2023-09-27 13:21:42 +0300
committerSlendi <slendi@socopon.com>2023-09-27 13:21:42 +0300
commit7b5135286b9a7cbd38a2eebbf832bf5d49b97346 (patch)
tree4c0e8b0bd92a7971c61f647b7c8db77a497b39be
parenta690d970cc85ba8cce7cf99a5528f623e1743b8c (diff)
Capitalize letters in comments.
Signed-off-by: Slendi <slendi@socopon.com>
-rw-r--r--efi.odin22
1 files changed, 11 insertions, 11 deletions
diff --git a/efi.odin b/efi.odin
index 005daff..84fb9f5 100644
--- a/efi.odin
+++ b/efi.odin
@@ -86,22 +86,22 @@ EfiUnimplementedFunction :: proc "c" ()
EfiRuntimeServices :: struct {
header: EfiTableHeader,
- // Time services
+ // Time Services
get_time: EfiGetTime,
set_time: EfiSetTime,
get_wakeup_time: EfiGetWakeupTime,
set_wakeup_time: EfiSetWakeupTime,
- // Virtual memory services
+ // Virtual Memory Services
set_virtual_address_map: EfiSetVirtualAddressMap,
convert_pointer: EfiConvertPointer,
- // Variable services
+ // Variable Services
get_variable: EfiUnimplementedFunction,
get_next_variable_name: EfiUnimplementedFunction,
set_variable: EfiUnimplementedFunction,
- // Miscellaneous services
+ // Miscellaneous Services
get_next_high_monotonic_count: EfiUnimplementedFunction,
reset_system: EfiResetSystem,
update_capsule: EfiUnimplementedFunction,
@@ -183,7 +183,7 @@ EfiExitBootServices :: proc "c" (image_handle: rawptr, map_key: uint) -> EfiStat
EfiBootServices :: struct {
header: EfiTableHeader,
- // Event, Timer, and Task Priority Services
+ // Event, Timer, and Task Priority Services (1)
raise_tpl: EfiRaiseTPL,
restore_tpl: EfiRestoreTPL,
@@ -194,7 +194,7 @@ EfiBootServices :: struct {
allocate_pool: EfiUnimplementedFunction,
free_pool: EfiUnimplementedFunction,
- // Event, Timer, and Task Priority Services
+ // Event, Timer, and Task Priority Services (2)
create_event: EfiUnimplementedFunction,
set_timer: EfiUnimplementedFunction,
wait_for_event: EfiUnimplementedFunction,
@@ -212,17 +212,17 @@ EfiBootServices :: struct {
locate_handle: EfiUnimplementedFunction,
locate_device_path: EfiUnimplementedFunction,
- // Miscellaneous services (1)
+ // Miscellaneous Services (1)
install_configuration_table: EfiUnimplementedFunction,
- // Image services
+ // Image Services
load_image: EfiLoadImage,
start_image: EfiStartImage,
exit: EfiExit,
unload_image: EfiUnloadImage,
exit_boot_services: EfiExitBootServices,
- // Miscellaneous services (2)
+ // Miscellaneous Services (2)
get_next_monotonic_count: EfiUnimplementedFunction,
stall: EfiUnimplementedFunction,
set_watchdog_timer: EfiUnimplementedFunction,
@@ -239,12 +239,12 @@ EfiBootServices :: struct {
install_multiple_protocol_interfaces: EfiUnimplementedFunction,
uninstall_multiple_protocol_interfaces: EfiUnimplementedFunction,
- // Miscellaneous services (3)
+ // Miscellaneous Services (3)
calculate_crc32: EfiUnimplementedFunction,
copy_mem: EfiUnimplementedFunction,
set_mem: EfiUnimplementedFunction,
- // Event, Timer, and Task Priority Services
+ // Event, Timer, and Task Priority Services (3)
create_event_ex: EfiUnimplementedFunction,
}