Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 157 of file halinit.c.
{ va_list args; unsigned int i; char Buffer[1024]; PCHAR String = Buffer; va_start(args, fmt); i = vsprintf(Buffer, fmt, args); va_end(args); /* Output the message */ while (*String != 0) { if (*String == '\n') { KdPortPutByteEx(NULL, '\r'); } KdPortPutByteEx(NULL, *String); String++; } return STATUS_SUCCESS; }