Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 320 of file tui.c.
Referenced by MiniTuiDrawProgressBar(), TuiDrawBackdrop(), TuiDrawCenteredText(), TuiDrawProgressBar(), TuiDrawStatusText(), and TuiUpdateDateTime().
{ PUCHAR ScreenMemory = (PUCHAR)TextVideoBuffer; ULONG i, j; // Draw the text for (i=X, j=0; Text[j] && i<UiScreenWidth; i++,j++) { ScreenMemory[((Y*2)*UiScreenWidth)+(i*2)] = (UCHAR)Text[j]; ScreenMemory[((Y*2)*UiScreenWidth)+(i*2)+1] = Attr; } }