comparison src/video/windib/SDL_dibevents.c @ 514:1080bfc4aa96

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Sun, 06 Oct 2002 20:25:05 +0000
parents a6fa62b1be09
children 230b156829ed
comparison
equal deleted inserted replaced
513:8feff52d7f5f 514:1080bfc4aa96
26 #endif 26 #endif
27 27
28 #include <stdlib.h> 28 #include <stdlib.h>
29 #include <stdio.h> 29 #include <stdio.h>
30 #include <windows.h> 30 #include <windows.h>
31 #ifdef HAVE_AYGSHELL
32 #include <aygshell.h>
33 #endif
31 34
32 #include "SDL_events.h" 35 #include "SDL_events.h"
33 #include "SDL_error.h" 36 #include "SDL_error.h"
34 #include "SDL_syswm.h" 37 #include "SDL_syswm.h"
35 #include "SDL_sysevents.h" 38 #include "SDL_sysevents.h"
361 } 364 }
362 365
363 void DIB_DestroyWindow(_THIS) 366 void DIB_DestroyWindow(_THIS)
364 { 367 {
365 if ( SDL_windowid == NULL ) { 368 if ( SDL_windowid == NULL ) {
369 #ifdef HAVE_AYGSHELL
370 /* Unhide taskbar, etc. */
371 SHFullScreen(SDL_Window, SHFS_SHOWTASKBAR);
372 SHFullScreen(SDL_Window, SHFS_SHOWSIPBUTTON);
373 ShowWindow(FindWindow(TEXT("HHTaskBar"),NULL),SW_SHOWNORMAL);
374 #endif
366 DestroyWindow(SDL_Window); 375 DestroyWindow(SDL_Window);
367 } 376 }
368 } 377 }