Ignore:
Timestamp:
Jul 4, 2001, 10:03:55 AM (24 years ago)
Author:
sandervl
Message:

workaround for 16 bits gdi handles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/dibitmap.cpp

    r5992 r6163  
    1 /* $Id: dibitmap.cpp,v 1.23 2001-06-13 10:29:05 sandervl Exp $ */
     1/* $Id: dibitmap.cpp,v 1.24 2001-07-04 08:03:54 sandervl Exp $ */
    22
    33/*
     
    139139//******************************************************************************
    140140//******************************************************************************
    141 HBITMAP WIN32API CreateBitmapIndirect( const BITMAP * arg1)
    142 {
    143     dprintf(("GDI32: CreateBitmapIndirect"));
    144     return O32_CreateBitmapIndirect(arg1);
     141HBITMAP WIN32API CreateBitmapIndirect( const BITMAP *pBitmap)
     142{
     143    HBITMAP hBitmap;
     144
     145    dprintf(("GDI32: CreateBitmapIndirect (%d,%d) bpp %d bits %x", pBitmap->bmWidth, pBitmap->bmHeight, pBitmap->bmBitsPixel, pBitmap->bmBits));
     146    hBitmap = O32_CreateBitmapIndirect(pBitmap);
     147    dprintf(("GDI32: CreateBitmapIndirect returned %x", hBitmap));
     148    return hBitmap;
    145149}
    146150//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.