Changeset 5968 for trunk/src/user32/winicon.cpp
- Timestamp:
- Jun 11, 2001, 10:08:26 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/winicon.cpp
r5728 r5968 1 /* $Id: winicon.cpp,v 1.2 3 2001-05-17 11:25:49sandervl Exp $ */1 /* $Id: winicon.cpp,v 1.24 2001-06-11 20:08:26 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Icon Code for OS/2 … … 809 809 } 810 810 811 #ifdef __WIN32OS2__ 812 if( (hdc = CreateCompatibleDC( 0 )) ) 813 #else 811 814 if( (hdc = GetDC( 0 )) ) 815 #endif 812 816 { 813 817 BITMAPINFO* pInfo; … … 998 1002 HeapFree( GetProcessHeap(), 0, pInfo ); 999 1003 } 1004 #ifdef __WIN32OS2__ 1005 DeleteDC(hdc ); 1006 #else 1000 1007 ReleaseDC( 0, hdc ); 1008 #endif 1001 1009 } 1002 1010
Note:
See TracChangeset
for help on using the changeset viewer.