Ignore:
Timestamp:
Dec 31, 2001, 1:08:23 PM (24 years ago)
Author:
sandervl
Message:

use critical section in dib section class instead of vmutex

File:
1 edited

Legend:

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

    r7675 r7717  
    1 /* $Id: gdi32.cpp,v 1.78 2001-12-23 16:40:10 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.79 2001-12-31 12:08:22 sandervl Exp $ */
    22
    33/*
     
    227227
    228228    if(newHdc) STATS_CreateCompatibleDC(hdc, newHdc);
    229 
    230229    OSLibGpiSetCp(newHdc, oldcp);
    231230    dprintf(("CreateCompatibleDC %X returned %x", hdc, newHdc));
     
    922921COLORREF WIN32API GetTextColor( HDC hdc)
    923922{
    924     dprintf(("GDI32: GetTextColor %x", hdc));
    925     return O32_GetTextColor(hdc);
    926 }
    927 //******************************************************************************
    928 //******************************************************************************
     923    COLORREF color;
     924
     925    color = O32_GetTextColor(hdc);
     926    dprintf(("GDI32: GetTextColor %x -> %x", hdc, color));
     927    return color;
     928}
    929929//******************************************************************************
    930930//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.