- Timestamp:
- Feb 18, 2002, 11:14:58 AM (24 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/USER32.DEF
r7765 r7943 1 ; $Id: USER32.DEF,v 1. 69 2002-01-12 14:09:30sandervl Exp $1 ; $Id: USER32.DEF,v 1.70 2002-02-18 10:14:56 sandervl Exp $ 2 2 3 3 LIBRARY USER32 INITINSTANCE TERMINSTANCE … … 709 709 _WinSetVisibleRgnNotifyProc@12 @2033 NONAME 710 710 _Win32ToOS2FrameHandle@4 @2034 NONAME 711 712 _CustForceMonoCursor@0 @2036 NONAME -
trunk/src/user32/oslibres.cpp
r7237 r7943 1 /* $Id: oslibres.cpp,v 1. 29 2001-10-27 10:30:10sandervl Exp $ */1 /* $Id: oslibres.cpp,v 1.30 2002-02-18 10:14:56 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 449 449 if(fCursor && pXorBmp->bmBitsPixel >= 8) 450 450 { 451 if( isMonoBitmap(pXorBmp, (PBYTE)os2rgb) == TRUE)451 if(fForceMonoCursor || isMonoBitmap(pXorBmp, (PBYTE)os2rgb) == TRUE) 452 452 { 453 453 pOS2XorBits = colorToMonoBitmap(hbmColor, pBmpColor); -
trunk/src/user32/pmwindow.cpp
r7887 r7943 1 /* $Id: pmwindow.cpp,v 1.16 8 2002-02-12 13:10:14sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.169 2002-02-18 10:14:57 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 65 65 ULONG ScreenBitsPerPel = 0; 66 66 BOOL fOS2Look = FALSE; 67 BOOL fForceMonoCursor = FALSE; 67 68 HBITMAP hbmFrameMenu[3] = {0}; 68 69 … … 252 253 fOS2Look = fLooks; 253 254 MENU_Init(); 255 } 256 //****************************************************************************** 257 //****************************************************************************** 258 void WIN32API CustForceMonoCursor() 259 { 260 fForceMonoCursor = TRUE; 254 261 } 255 262 //****************************************************************************** -
trunk/src/user32/pmwindow.h
r7691 r7943 1 /* $Id: pmwindow.h,v 1.1 5 2001-12-26 19:05:35 achimhaExp $ */1 /* $Id: pmwindow.h,v 1.16 2002-02-18 10:14:57 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 26 26 extern ULONG ScreenBitsPerPel; 27 27 extern BOOL fOS2Look; 28 extern BOOL fForceMonoCursor; 28 29 extern HWND hwndCD; 29 30 extern LONG CapsCharHeight; -
trunk/src/user32/user32dbg.def
r7885 r7943 1 ; $Id: user32dbg.def,v 1. 2 2002-02-12 12:00:03sandervl Exp $1 ; $Id: user32dbg.def,v 1.3 2002-02-18 10:14:58 sandervl Exp $ 2 2 3 3 LIBRARY USER32 INITINSTANCE TERMINSTANCE … … 709 709 _WinSetVisibleRgnNotifyProc@12 @2033 NONAME 710 710 _Win32ToOS2FrameHandle@4 @2034 NONAME 711 712 _CustForceMonoCursor@0 @2036 NONAME
Note:
See TracChangeset
for help on using the changeset viewer.