MCPcopy Create free account
hub / github.com/capstone-engine/capstone / DriverEntry

Function DriverEntry

tests/test_winkernel.cpp:151–158  ·  view source on GitHub ↗

Driver entry point

Source from the content-addressed store, hash-verified

149
150// Driver entry point
151EXTERN_C NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
152{
153 UNREFERENCED_PARAMETER(DriverObject);
154 UNREFERENCED_PARAMETER(RegistryPath);
155 cs_winkernel_vsnprintf_test();
156 test();
157 return STATUS_CANCELLED;
158}
159
160// This functions mimics printf() but does not return the same value as printf()
161// would do. printf() is required to exercise regression tests.

Callers

nothing calls this directly

Calls 2

testFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…