comparison src/video/wincommon/SDL_syswm.c @ 1481:deb22b9fe970

Yet more Win64 tweaks
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Mar 2006 16:02:59 +0000
parents 8dfa9a6d69a5
children 4d005dfbb7f5
comparison
equal deleted inserted replaced
1480:0a2bd6507477 1481:deb22b9fe970
218 screen_icn = CreateIconFromResourceEx((Uint8 *)icon_win32, icon_len, 218 screen_icn = CreateIconFromResourceEx((Uint8 *)icon_win32, icon_len,
219 TRUE, 0x00030000, icon->w, icon->h, LR_DEFAULTCOLOR); 219 TRUE, 0x00030000, icon->w, icon->h, LR_DEFAULTCOLOR);
220 if ( screen_icn == NULL ) { 220 if ( screen_icn == NULL ) {
221 SDL_SetError("Couldn't create Win32 icon handle"); 221 SDL_SetError("Couldn't create Win32 icon handle");
222 } else { 222 } else {
223 SetClassLongPtr(SDL_Window, GCL_HICON, (LONG_PTR)screen_icn); 223 SetClassLongPtr(SDL_Window, GCLP_HICON, (LONG_PTR)screen_icn);
224 } 224 }
225 SDL_stack_free(icon_win32); 225 SDL_stack_free(icon_win32);
226 #endif /* DISABLE_ICON_SUPPORT */ 226 #endif /* DISABLE_ICON_SUPPORT */
227 } 227 }
228 228