Apparently, the EASEUS Partition Master program can display graphics before the Windows GUI starts (i.e., it runs at the same time CheckDisk runs at boot).

What I already know:

  1. This might require not-very-well-documented functions. That's fine with me.

  2. I already know how to compile native NT executables, so feel free to omit that from responses.

Questions:

  1. How can you display graphics before everything has started up? (i.e. What functions/libraries do you use?)

  2. How does it display formatted and aligned text on the screen?
    I know NtDisplayString is capable of writing text, but it can't draw things in a formatted manner, as you can see below. What function(s) do you use to replicate the behavior below?

Screenshot

link|improve this question

The only graphics I see in that picture are VirtualBox, the rest can be done using line and box characters in the extended ASCII character set. – Ben Voigt Jun 4 '11 at 23:37
@Ben: How do you do a blue pixel followed by a white pixel followed by a black pixel followed by a gray pixel, just with extended ASCII characters? (See the progress bar's borders.) Aren't the fonts a bit bigger than that? – Mehrdad Jun 4 '11 at 23:45
@Mehrdad: If it is done with extended ASCII, most likely the progress bar outline would be dark blue, same as the progress bar itself. I don't think I could tell the difference on your screenshot. I think you're right that this image isn't just text, but text could give you all those graphic elements with a similar look, even if not identical. – Ben Voigt Jun 5 '11 at 0:05
@Ben: Well, there's still another issue, even if I ignored that: How do you move the cursor up? You can move it left by printing backspaces or \r using NtDisplayString, but they're definitely using a different method for printing things to different parts of the screen. – Mehrdad Jun 5 '11 at 0:07
@Mehrdad: IIRC, boot-time chkdsk even displays in graphical mode on recent versions of Windows. – Ben Voigt Jun 5 '11 at 0:11
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

I feel kind of silly answering my own question right now, but Ben's hints helped me figure it out:

It's using a driver, which in turn uses these functions in BootVid.dll:

VidBufferToScreenBlt
VidScreenToBufferBlt
VidBitBlt
link|improve this answer
Well, but what is the format of those bitmaps? – grep Aug 25 '11 at 9:52
feedback

Perhaps it's using low-level VGA calls to switch to graphics mode and manipulate video memory.

link|improve this answer
Whoa really?! So you think it might not be using OS features at all? – Mehrdad Jun 4 '11 at 22:53
Actually, I really doubt that's the case -- they're using the same font and resolution as Windows, so doubt that's actually happening. – Mehrdad Jun 5 '11 at 0:07
@Mehrdad: Maybe it's using whatever calls windows uses for the graphical loading screen (which appears before boot-time chkdsk, and has been around since Win2000). It isn't using the usual graphics drivers, since those can't load without locking the system partition (registry mounted read-write and all that). – Ben Voigt Jun 5 '11 at 0:09
@Ben: That's likely, but what are those calls? Which DLLs are they in, and which functions are they? – Mehrdad Jun 5 '11 at 0:10
@Mehrdad: Have you run the file through dependency walker? – Ben Voigt Jun 5 '11 at 0:12
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.