Is it possible to call windows libraries that will live on the hard disk from a program that lives in the bios?
I'm trying to write a program that will be a BIOS option (after POST). I'd like the application to have a nice GUI instead of being text based (there are multiple reasons for this, localization being one of them).
My problem is that we are constrained by the size of the application that we can flash to the BIOS.
Is it possible using MASM32 to "Link" to the dll's on the hard disk so that we can use the Windows API's to develop the GUI?
Or is there an API that is availible to us to create the GUI that can be linked into the final executable? (60K size constraint on the final program executable)
Any help you can give would be greatly appreciated, thanks in advance.