.NET
wincedd.txt
Associated article: Writing Windows CE Display Drivers
Tags: .NET
Published source code accompanying the article by Jeff Spurgat in which he examines the fundamentals of Windows CE display driver development, including Microsoft's display driver C++ classes. He then explores improvements to the C++ classes that will simplify display driver development. Also see WINCEDD.ZIP.
Writing Windows CE Display Drivers
by Jeff Spurgat
Listing One
NewGPE::NewGPE()
{
// Flags for hardware features
m_bIsVGADevice = TRUE; // default to VGA device
m_bHWCursor = FALSE; // default to software cursor
m_b555Mode = FALSE; // default to 5-6-5 mode for 16...


