| 954 | } |
| 955 | |
| 956 | result_t Kernel::OutputDebugString(const std::string_view str, u64 len) { |
| 957 | LOG_DEBUG(Kernel, "OutputDebugString called"); |
| 958 | if (len != 0) { |
| 959 | // TODO: handle differently |
| 960 | LOG_INFO(Kernel, "{}", str); |
| 961 | } |
| 962 | |
| 963 | return RESULT_SUCCESS; |
| 964 | } |
| 965 | |
| 966 | // TODO: object |
| 967 | result_t Kernel::GetInfo(Process* crnt_process, InfoType info_type, |
nothing calls this directly
no outgoing calls
no test coverage detected