Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 1997 of file listbox.c.
Referenced by ListBoxWndProc_common().
{ short gcWheelDelta = 0; UINT pulScrollLines = 3; SystemParametersInfoW(SPI_GETWHEELSCROLLLINES,0, &pulScrollLines, 0); gcWheelDelta -= delta; if (abs(gcWheelDelta) >= WHEEL_DELTA && pulScrollLines) { int cLineScroll = (int) min((UINT) descr->page_size, pulScrollLines); cLineScroll *= (gcWheelDelta / WHEEL_DELTA); LISTBOX_SetTopItem( descr, descr->top_item + cLineScroll, TRUE ); } return 0; }