| 67 | } |
| 68 | |
| 69 | inline bool IsKernel5xOrLater() { |
| 70 | u64 dummy = 0; |
| 71 | const auto rc = svcGetInfo(&dummy, InfoType_UserExceptionContextAddress, INVALID_HANDLE, 0); |
| 72 | return R_VALUE(rc) != KERNELRESULT(InvalidEnumValue); |
| 73 | } |
| 74 | |
| 75 | enum class CodeMemoryCapability : u32 { |
| 76 | Unavailable = 0, |
no outgoing calls
no test coverage detected