Changeset 1334
- Timestamp:
- Oct 17, 1999, 2:19:13 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
changelog (modified) (1 diff)
-
include/win/scroll.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r1328 r1334 1 /* $Id: changelog,v 1.331 1999-10-17 01:55:08 bird Exp $ */ 1 /* $Id: changelog,v 1.332 1999-10-17 12:19:13 cbratschi Exp $ */ 2 3 99-10-17: Christoph Bratschi <cbratschi@datacomm.ch> 4 - USER32: replaced OS/2 scrollbars by WINE scrollbars 5 BUG: SCROLL_RefreshScrollBar doesn't work 6 GetDC returns a wrong DC, BeginPaint works as it should 7 Send as few WM_ENTERIDLE messages as possible -> low CPU usage 8 pmframe: removed WinFillRect 9 2 10 99-10-17: knut st. osmundsen <knut.stange.osmundsen@pmsc.no> 3 11 - KERNEL32: Removed exception throwing from Pe2Lx classes. -
trunk/include/win/scroll.h
r1091 r1334 1 /* $Id: scroll.h,v 1. 4 1999-09-29 08:26:39 sandervlExp $ */1 /* $Id: scroll.h,v 1.5 1999-10-17 12:18:50 cbratschi Exp $ */ 2 2 3 3 /* … … 23 23 } SCROLLBAR_INFO; 24 24 25 extern LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT uMsg, 26 WPARAM wParam, LPARAM lParam ); 27 extern void SCROLL_DrawScrollBar( HWND hwnd, HDC hdc, INT nBar, 28 BOOL arrows, BOOL interior ); 29 extern void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, 30 UINT msg, POINT pt ); 25 VOID SCROLL_SubclassScrollBars(HWND hwndHorz,HWND hwndVert); 26 27 extern LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam ); 28 extern LRESULT WINAPI HorzScrollBarWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam ); 29 extern LRESULT WINAPI VertScrollBarWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam ); 31 30 32 31 BOOL SCROLLBAR_Register();
Note:
See TracChangeset
for help on using the changeset viewer.
