Changeset 5390 for trunk/src/gdi32/dibsect.cpp
- Timestamp:
- Mar 27, 2001, 10:47:53 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/dibsect.cpp
r5346 r5390 1 /* $Id: dibsect.cpp,v 1.4 7 2001-03-21 12:31:36sandervl Exp $ */1 /* $Id: dibsect.cpp,v 1.48 2001-03-27 20:47:52 sandervl Exp $ */ 2 2 3 3 /* … … 39 39 //****************************************************************************** 40 40 DIBSection::DIBSection(BITMAPINFOHEADER_W *pbmi, char *pColors, DWORD iUsage, DWORD hSection, DWORD dwOffset, DWORD handle, int fFlip) 41 : bmpBits(NULL), pOS2bmp(NULL), next(NULL), bmpBitsDblBuffer(NULL) 41 : bmpBits(NULL), pOS2bmp(NULL), next(NULL), bmpBitsDblBuffer(NULL), 42 hdc(0), hwndParent(0) 42 43 { 43 44 int palsize=0; … … 723 724 //****************************************************************************** 724 725 //****************************************************************************** 725 DIBSection *DIBSection::find (DWORDhandle)726 DIBSection *DIBSection::findObj(HANDLE handle) 726 727 { 727 728 DIBSection *dsect = section; … … 759 760 //****************************************************************************** 760 761 //****************************************************************************** 761 void DIBSection::deleteSection( DWORDhandle)762 { 763 DIBSection *dsect = find (handle);762 void DIBSection::deleteSection(HANDLE handle) 763 { 764 DIBSection *dsect = findObj(handle); 764 765 765 766 if(dsect)
Note:
See TracChangeset
for help on using the changeset viewer.