| 746 | } |
| 747 | |
| 748 | BOOL WINAPI KbReadDmiMemory(OUT UCHAR DmiMemory[DmiSize], ULONG BufferSize) |
| 749 | { |
| 750 | if (BufferSize != DmiSize) return FALSE; |
| 751 | return KbSendRequest(Ctls::KbReadDmiMemory, NULL, 0, reinterpret_cast<PKB_READ_DMI_MEMORY_OUT>(DmiMemory), BufferSize); |
| 752 | } |
| 753 | } |
| 754 | |
| 755 | namespace Processes |
nothing calls this directly
no test coverage detected