Changeset 3641 for trunk/src/user32/dc.h
- Timestamp:
- Jun 1, 2000, 1:27:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/dc.h
r2582 r3641 1 /* $Id: dc.h,v 1.1 1 2000-01-31 22:30:51sandervl Exp $ */1 /* $Id: dc.h,v 1.12 2000-06-01 11:27:57 sandervl Exp $ */ 2 2 /* 3 3 * public dc functions … … 438 438 439 439 440 int APIENTRY _O32_GetClipRgn( HDC, HRGN ); 441 442 inline int O32_GetClipRgn(HDC a, HRGN b) 443 { 444 int yyrc; 445 USHORT sel = RestoreOS2FS(); 446 447 yyrc = _O32_GetClipRgn(a, b); 448 SetFS(sel); 449 450 return yyrc; 451 } 452 453 int OPEN32API _O32_GetClipBox( HDC, PRECT ); 454 455 inline int O32_GetClipBox(HDC a, PRECT b) 456 { 457 int yyrc; 458 USHORT sel = RestoreOS2FS(); 459 460 yyrc = _O32_GetClipBox(a, b); 461 SetFS(sel); 462 463 return yyrc; 464 } 465 440 466 // from pmddi.h: 441 467 /* CopyClipRegion */
Note:
See TracChangeset
for help on using the changeset viewer.