Design
deskjock.txt
Associated article: Private Desktops & Windows XP
Tags: Design
Published source code accompanying the article by Stephen Lardieri in which he shows how kiosk and similar applications can have full-screen user interfaces that suppress other dialog boxes and the windows of other applications. Also see DESKJOCK.ZIP.
Kiosk Applications & Private Desktops for Windows XP
by Stephen Lardieri
Listing One
// Desktop Demo.cpp
#include "stdafx.h"
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
HDESK hdeskOriginalThread = GetThreadDesktop(GetCurrentThreadId());
HDESK hdeskOriginalInput = OpenInputDesktop(0,FALSE,...


