Changeset 1704 for trunk/src/user32/dc.h


Ignore:
Timestamp:
Nov 11, 1999, 2:17:33 PM (26 years ago)
Author:
sandervl
Message:

dlg fix, keyboard additions, + misc other things

File:
1 edited

Legend:

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

    r1550 r1704  
    1 /* $Id: dc.h,v 1.7 1999-11-02 19:13:00 sandervl Exp $ */
     1/* $Id: dc.h,v 1.8 1999-11-11 13:17:29 sandervl Exp $ */
    22/*
    33 * public dc functions
     
    332332}
    333333
     334BOOL    OPEN32API _O32_ExcludeUpdateRgn( HDC, HWND );
     335
     336inline BOOL O32_ExcludeUpdateRgn(HDC a, HWND b)
     337{
     338 BOOL yyrc;
     339 USHORT sel = RestoreOS2FS();
     340
     341    yyrc = _O32_ExcludeUpdateRgn(a, b);
     342    SetFS(sel);
     343
     344    return yyrc;
     345}
     346
    334347BOOL OPEN32API _O32_CreateCaret (HWND hwnd, HBITMAP hbm, int width, int height);
    335348
Note: See TracChangeset for help on using the changeset viewer.