- Timestamp:
- May 23, 2000, 8:46:21 PM (25 years ago)
- Location:
- trunk/src/gdi32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/dibsect.cpp
r3567 r3594 1 /* $Id: dibsect.cpp,v 1.3 1 2000-05-19 18:42:14sandervl Exp $ */1 /* $Id: dibsect.cpp,v 1.32 2000-05-23 18:46:20 sandervl Exp $ */ 2 2 3 3 /* … … 619 619 //****************************************************************************** 620 620 //****************************************************************************** 621 charDIBSection::GetBitCount()621 int DIBSection::GetBitCount() 622 622 { 623 623 if(pOS2bmp == NULL) … … 628 628 //****************************************************************************** 629 629 //****************************************************************************** 630 int DIBSection::GetHeight() 631 { 632 if(pOS2bmp == NULL) 633 return 0; 634 else 635 return pOS2bmp->cy; 636 } 637 //****************************************************************************** 638 //****************************************************************************** 630 639 DIBSection *DIBSection::section = NULL; -
trunk/src/gdi32/dibsect.h
r3527 r3594 1 /* $Id: dibsect.h,v 1.1 7 2000-05-12 19:14:56sandervl Exp $ */1 /* $Id: dibsect.h,v 1.18 2000-05-23 18:46:20 sandervl Exp $ */ 2 2 3 3 /* … … 71 71 char *GetDIBObject() { return bmpBits; }; 72 72 void SelectDIBObject(HDC hdc); 73 char GetBitCount(); 73 int GetBitCount(); 74 int GetHeight(); 74 75 void UnSelectDIBObject() { this->hdc = 0; }; 75 76 -
trunk/src/gdi32/palette.cpp
r3589 r3594 1 /* $Id: palette.cpp,v 1. 4 2000-05-22 19:11:28sandervl Exp $ */1 /* $Id: palette.cpp,v 1.5 2000-05-23 18:46:21 sandervl Exp $ */ 2 2 3 3 /* … … 54 54 UINT WIN32API RealizePalette( HDC hdc) 55 55 { 56 dprintf(("GDI32: RealizePalette %x", hdc)); 57 return O32_RealizePalette(hdc); 56 UINT rc; 57 58 rc = O32_RealizePalette(hdc); 59 dprintf(("GDI32: RealizePalette %x returned %d", hdc, rc)); 60 return rc; 58 61 } 59 62 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.