MCPcopy Create free account
hub / github.com/NullArray/WinKernel-Resources / DumpArray

Function DumpArray

Drivers/Driver-SRC/setup/devcon/dump.cpp:818–845  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

816}
817
818BOOL DumpArray(_In_ int pad, _In_ PZPWSTR Array)
819/*++
820
821Routine Description:
822
823 Iterate array and dump entries to screen
824
825Arguments:
826
827 pad - padding
828 Array - array to dump
829
830Return Value:
831
832 none
833
834--*/
835{
836 if(!Array || !Array[0]) {
837 return FALSE;
838 }
839 while(Array[0]) {
840 Padding(pad);
841 _tprintf(TEXT("%s\n"),Array[0]);
842 Array++;
843 }
844 return TRUE;
845}
846
847BOOL DumpDeviceHwIds(_In_ HDEVINFO Devs, _In_ PSP_DEVINFO_DATA DevInfo)
848/*++

Callers 3

DumpDeviceHwIdsFunction · 0.85
DumpDeviceStackFunction · 0.85
cmdClassFilterFunction · 0.85

Calls 1

PaddingFunction · 0.85

Tested by

no test coverage detected