mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6154
This commit is contained in:
parent
957814bdfd
commit
d3a2bde2bb
|
@ -313,9 +313,17 @@ LRESULT CALLBACK WndProc(
|
|||
if (boinc_is_standalone()) {
|
||||
exit(0);
|
||||
} else {
|
||||
set_mode(MODE_HIDE_GRAPHICS);
|
||||
return 0;
|
||||
if (current_graphics_mode != MODE_FULLSCREEN) {
|
||||
set_mode(MODE_HIDE_GRAPHICS);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
case WM_POWERBROADCAST:
|
||||
if (PBT_APMQUERYSUSPEND == wParam && current_graphics_mode == MODE_FULLSCREEN) {
|
||||
set_mode(MODE_HIDE_GRAPHICS);
|
||||
return TRUE;
|
||||
}
|
||||
break;
|
||||
case WM_PAINT:
|
||||
PAINTSTRUCT ps;
|
||||
RECT winRect;
|
||||
|
|
|
@ -6575,3 +6575,11 @@ Janus 13 May 2005
|
|||
white.css
|
||||
bbcode.php (new)
|
||||
|
||||
Rom 13 May 2005
|
||||
- When an application is in screensaver mode, do not respond to the WM_CLOSE event
|
||||
since Intellitype/Intellipoint will try to shutdown the screensavers.
|
||||
- When in screensaver mode respond to a power broadcast event by shutting ourselves
|
||||
down so the OS can go to sleep.
|
||||
|
||||
api/
|
||||
windows_opengl.C
|
||||
|
|
Loading…
Reference in New Issue