Ignore:
Timestamp:
Feb 6, 2000, 11:00:25 PM (26 years ago)
Author:
sandervl
Message:

DC changes + commented out shell position update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.h

    r2666 r2672  
    1 /* $Id: win32wbase.h,v 1.81 2000-02-05 19:45:19 cbratschi Exp $ */
     1/* $Id: win32wbase.h,v 1.82 2000-02-06 22:00:25 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    198198         void   SetWindowRegion(HRGN hRegion)       { hWindowRegion = hRegion; };
    199199         HRGN   GetWindowRegion()                   { return hWindowRegion; };
    200          HRGN   GetUpdateRegion()                   { return hUpdateRegion; };
     200
     201         //Save old clip region for CS_OWNDC windows (in BeginPaint)
     202         HRGN   GetClipRegion()                   { return hClipRegion; };
     203         void   SetClipRegion(HRGN hRegion)       { hClipRegion = hRegion; };
    201204
    202205         BOOL   ShowWindow(ULONG nCmdShow);
     
    343346
    344347        HRGN    hWindowRegion;
    345         HRGN    hUpdateRegion;
     348        HRGN    hClipRegion;
    346349
    347350        DWORD   dwThreadId;             //id of thread that created this window
Note: See TracChangeset for help on using the changeset viewer.