This functions mimics printf() but does not return the same value as printf() would do. printf() is required to exercise regression tests.
| 160 | // This functions mimics printf() but does not return the same value as printf() |
| 161 | // would do. printf() is required to exercise regression tests. |
| 162 | _Use_decl_annotations_ |
| 163 | int __cdecl printf(const char * format, ...) |
| 164 | { |
| 165 | NTSTATUS status; |
| 166 | va_list args; |
| 167 | |
| 168 | va_start(args, format); |
| 169 | status = vDbgPrintEx(DPFLTR_DEFAULT_ID, DPFLTR_ERROR_LEVEL, format, args); |
| 170 | va_end(args); |
| 171 | return NT_SUCCESS(status); |
| 172 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…