Changeset 6502
- Timestamp:
- Aug 9, 2001, 5:01:50 PM (24 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r6498 r6502 1 /* $Id: changelog,v 1.164 4 2001-08-09 08:43:48sandervl Exp $ */1 /* $Id: changelog,v 1.1645 2001-08-09 15:01:30 sandervl Exp $ */ 2 2 3 3 2001-08-09: Sander van Leeuwen <sandervl@xs4all.nl> … … 5 5 (fixes RealPlayer 8 install) 6 6 o Use WinQueueFromID to query message queue handle of first thread 7 o Convert 32x32 icon to 40x40 by centering it instead of scaling 7 8 - KERNEL32: o Use WinQueueFromID to query message queue handle of new thread 9 - SHELL32: o Fill in complete resource dir for icon conversion 8 10 9 11 2001-08-08: knut st. osmundsen <kosmunds@csc.com> -
trunk/src/shell32/shelllink.c
r6492 r6502 397 397 if(hResInfo) { 398 398 GRPICONDIR icondir = {0}; 399 BITMAPINFO *bmi; 400 401 bmi = (BITMAPINFO *)LockResource(LoadResource(hModule, hResInfo)); 399 402 400 403 icondir.idReserved = 0; … … 402 405 icondir.idCount = 1; 403 406 icondir.idEntries[0].nID = nIndex; 407 icondir.idEntries[0].bHeight = bmi->bmiHeader.biHeight/2; 408 icondir.idEntries[0].bWidth = bmi->bmiHeader.biWidth; 409 icondir.idEntries[0].wBitCount = bmi->bmiHeader.biBitCount; 404 410 405 411 if(!SaveIconResAsOS2ICO(&icondir, hModule, szXPMFileName))
Note:
See TracChangeset
for help on using the changeset viewer.