- Timestamp:
- Dec 29, 1999, 1:39:09 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/cvtcursor.cpp
r1475 r2245 1 /* $Id: cvtcursor.cpp,v 1. 8 1999-10-27 10:35:41sandervl Exp $ */1 /* $Id: cvtcursor.cpp,v 1.9 1999-12-29 12:39:09 sandervl Exp $ */ 2 2 3 3 /* … … 148 148 - curHdr->yHotspot; /* subtract hot.y */ 149 149 150 dprintf (("Cursor Hot.x : %d", curHdr->xHotspot));151 dprintf (("Cursor Hot.y : %d", curHdr->yHotspot));150 dprintf2(("Cursor Hot.x : %d", curHdr->xHotspot)); 151 dprintf2(("Cursor Hot.y : %d", curHdr->yHotspot)); 152 152 153 153 if(bmpHdr->biBitCount == 1) { … … 167 167 cursorhdr->bmp2.ulCompression = BCA_UNCOMP; 168 168 cursorhdr->bmp2.ulColorEncoding = BCE_RGB; 169 dprintf (("Cursor size : %d", bmpHdr->biSizeImage));170 dprintf (("Cursor Width : %d", bmpHdr->biWidth));169 dprintf2(("Cursor size : %d", bmpHdr->biSizeImage)); 170 dprintf2(("Cursor Width : %d", bmpHdr->biWidth)); 171 171 //height for both the XOR and AND bitmap (color & BW) 172 dprintf (("Height : %d", bmpHdr->biHeight));173 dprintf (("Cursor Bitcount: %d", bmpHdr->biBitCount));174 dprintf (("Cursor Compress: %d", bmpHdr->biCompression));172 dprintf2(("Height : %d", bmpHdr->biHeight)); 173 dprintf2(("Cursor Bitcount: %d", bmpHdr->biBitCount)); 174 dprintf2(("Cursor Compress: %d", bmpHdr->biCompression)); 175 175 176 176 os2rgb = (RGB2 *)(cursorhdr+1); -
trunk/src/kernel32/cvtcursorgrp.cpp
r1040 r2245 1 /* $Id: cvtcursorgrp.cpp,v 1. 6 1999-09-25 14:11:31sandervl Exp $ */1 /* $Id: cvtcursorgrp.cpp,v 1.7 1999-12-29 12:39:09 sandervl Exp $ */ 2 2 3 3 /* … … 45 45 dprintf(("Cursor Group count: %d", chdr->cwCount)); 46 46 for(i=0;i<chdr->cwCount;i++) { 47 dprintf (("Cursor : %d", rdir->wNameOrdinal));48 dprintf (("Width : %d", (int)rdir->wWidth));49 dprintf (("Height : %d", (int)rdir->wHeight));50 dprintf (("Bits : %d", rdir->wBitCount));51 dprintf (("ResBytes: %d", rdir->lBytesInRes));47 dprintf2(("Cursor : %d", rdir->wNameOrdinal)); 48 dprintf2(("Width : %d", (int)rdir->wWidth)); 49 dprintf2(("Height : %d", (int)rdir->wHeight)); 50 dprintf2(("Bits : %d", rdir->wBitCount)); 51 dprintf2(("ResBytes: %d", rdir->lBytesInRes)); 52 52 winres = (Win32Resource *)FindResourceA(module->getInstanceHandle(), 53 53 (LPCSTR)rdir->wNameOrdinal, -
trunk/src/kernel32/cvticon.cpp
r1475 r2245 1 /* $Id: cvticon.cpp,v 1. 6 1999-10-27 10:35:41sandervl Exp $ */1 /* $Id: cvticon.cpp,v 1.7 1999-12-29 12:39:09 sandervl Exp $ */ 2 2 3 3 /* … … 116 116 bmpHdr->biSizeImage = bwsize + colorsize; 117 117 } 118 dprintf (("Icon size : %d", bmpHdr->biSizeImage));119 dprintf (("Icon Width : %d", bmpHdr->biWidth));118 dprintf2(("Icon size : %d", bmpHdr->biSizeImage)); 119 dprintf2(("Icon Width : %d", bmpHdr->biWidth)); 120 120 //height for both the XOR and AND bitmap (color & BW) 121 dprintf (("Height : %d", bmpHdr->biHeight));122 dprintf (("Icon Bitcount: %d", bmpHdr->biBitCount));123 dprintf (("Icon Compress: %d", bmpHdr->biCompression));121 dprintf2(("Height : %d", bmpHdr->biHeight)); 122 dprintf2(("Icon Bitcount: %d", bmpHdr->biBitCount)); 123 dprintf2(("Icon Compress: %d", bmpHdr->biCompression)); 124 124 125 125 //SvL: 28-09-'98: cllngenu.dll has an incorrect size in the header -
trunk/src/kernel32/cvticongrp.cpp
r997 r2245 1 /* $Id: cvticongrp.cpp,v 1. 4 1999-09-21 08:24:53sandervl Exp $ */1 /* $Id: cvticongrp.cpp,v 1.5 1999-12-29 12:39:09 sandervl Exp $ */ 2 2 3 3 /* … … 44 44 dprintf(("Icon Group count:%d", ihdr->wCount)); 45 45 for(i=0;i<ihdr->wCount;i++) { 46 dprintf (("Icon : %d", rdir->wNameOrdinal));47 dprintf (("Width : %d", (int)rdir->bWidth));48 dprintf (("Height : %d", (int)rdir->bHeight));49 dprintf (("Colors : %d", (int)rdir->bColorCount));50 dprintf (("Bits : %d", rdir->wBitCount));51 dprintf (("ResBytes: %d", rdir->lBytesInRes));46 dprintf2(("Icon : %d", rdir->wNameOrdinal)); 47 dprintf2(("Width : %d", (int)rdir->bWidth)); 48 dprintf2(("Height : %d", (int)rdir->bHeight)); 49 dprintf2(("Colors : %d", (int)rdir->bColorCount)); 50 dprintf2(("Bits : %d", rdir->wBitCount)); 51 dprintf2(("ResBytes: %d", rdir->lBytesInRes)); 52 52 winres = (Win32Resource *)FindResourceA(module->getInstanceHandle(), 53 53 (LPCSTR)rdir->wNameOrdinal, -
trunk/src/kernel32/winimagepeldr.cpp
r2219 r2245 1 /* $Id: winimagepeldr.cpp,v 1.2 6 1999-12-27 21:20:48sandervl Exp $ */1 /* $Id: winimagepeldr.cpp,v 1.27 1999-12-29 12:39:09 sandervl Exp $ */ 2 2 3 3 /* … … 628 628 } 629 629 if(ulRead != size) { 630 dprintf((LOG, "Win32PeLdrImage::commitPage: DosRead failed to read %x (%x) bytes for 0x%x!", size, ulRead, virtAddress));630 dprintf((LOG, "Win32PeLdrImage::commitPage: DosRead failed to read %x (%x) bytes at %x for 0x%x!", size, ulRead, fileoffset, virtAddress)); 631 631 return FALSE; 632 632 }
Note:
See TracChangeset
for help on using the changeset viewer.