ostream hpp
More...
#include "efi.h"
#include "efilib.h"
Go to the source code of this file.
ostream hpp
- Author
- Zone.N (Zone..nosp@m.Niuz.nosp@m.h@hot.nosp@m.mail.nosp@m..com)
- Version
- 1.0
- Date
- 2023-07-15
- Copyright
- MIT LICENSE https://github.com/Simple-XX/SimpleKernel
- change log:
-
Definition in file ostream.hpp.
◆ wait_for_input()
auto wait_for_input |
( |
EFI_INPUT_KEY * |
_key | ) |
-> EFI_STATUS |
等待输入
- Parameters
-
- Returns
- efi 错误码
Definition at line 19 of file ostream.cpp.
20 EFI_STATUS status = EFI_SUCCESS;
22 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, _key);
23 }
while (EFI_NOT_READY == status);
◆ debug