RE: How to Program Screen Saver in Windows CE
From: Mike Thomson (mikethom_at_online.microsoft.com)
Date: 04/08/04
- Next message: Mike Thomson: "RE: stay on top of other opened app windows"
- Previous message: Mike Thomson: "RE: Word completion in WinCE 4.2"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 08 Apr 2004 17:38:06 GMT
We don't have the full infrastructure in place yet. The Shell does
currently get notified when a screen saver can be show and then removed.
If you have 4.2 look for this code in the shell. Also pull the screen
saver code from the WBTShell and just plug it in.
switch(wp)
{
case PBT_APMUSERIDLE:
// ScreenSaver start
RETAILMSG(TRUE, (TEXT("Screen Saver Started.\r\n")));
break;
// Screen saver app should be looking for this message
case PBT_APMUSERACTIVE:
// ScreenSaver end
RETAILMSG(TRUE, (TEXT("Screen Saver Ended.\r\n")));
break;
}
break;
Mike Thomson
Program Manager, Windows CE
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2004 Microsoft Corporation. All rights
reserved.
- Next message: Mike Thomson: "RE: stay on top of other opened app windows"
- Previous message: Mike Thomson: "RE: Word completion in WinCE 4.2"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|