Changeset 1334


Ignore:
Timestamp:
Oct 17, 1999, 2:19:13 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

Location:
trunk
Files:
2 edited

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
    210 99-10-17: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
    311    - 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 sandervl Exp $ */
     1/* $Id: scroll.h,v 1.5 1999-10-17 12:18:50 cbratschi Exp $ */
    22
    33/*
     
    2323} SCROLLBAR_INFO;
    2424
    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 );
     25VOID SCROLL_SubclassScrollBars(HWND hwndHorz,HWND hwndVert);
     26
     27extern LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam );
     28extern LRESULT WINAPI HorzScrollBarWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam );
     29extern LRESULT WINAPI VertScrollBarWndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam );
    3130
    3231BOOL SCROLLBAR_Register();
Note: See TracChangeset for help on using the changeset viewer.