Skip to content

Commit 5b1839a

Browse files
Merge pull request #1497 from rossnichols/patch-1
Update descriptions of SPI_GET/SETMOUSEWHEELROUTING
2 parents aac27ab + 3c047b9 commit 5b1839a

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

sdk-api-src/content/winuser/nf-winuser-systemparametersinfoa.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,11 +1202,13 @@ The <i>pvParam</i> parameter must point to an integer variable that receives a v
12021202
</dl>
12031203
</td>
12041204
<td width="60%">
1205-
Retrieves the routing setting for wheel button input. The routing setting determines whether wheel button input is sent to the app with focus (foreground) or the app under the mouse cursor.
1205+
Retrieves the routing setting for mouse wheel input. The routing setting determines whether mouse wheel input is sent to the app with focus (foreground) or the app under the mouse cursor.
12061206

1207-
The <i>pvParam</i> parameter must point to a <b>DWORD</b> variable that receives the routing option.
1208-
If the value is zero or MOUSEWHEEL_ROUTING_FOCUS, mouse wheel input is delivered to the app with focus. If the value is 1 or MOUSEWHEEL_ROUTING_HYBRID (default), mouse wheel input is delivered to the app with focus (desktop apps) or the app under the mouse cursor (Windows Store apps).
1209-
The <i>uiParam</i> parameter is not used.
1207+
The <i>pvParam</i> parameter must point to a <b>DWORD</b> variable that receives the routing option. The <i>uiParam</i> parameter is not used.
1208+
1209+
If the value is zero (MOUSEWHEEL_ROUTING_FOCUS), mouse wheel input is delivered to the app with focus. If the value is 1 (MOUSEWHEEL_ROUTING_HYBRID), mouse wheel input is delivered to the app with focus (desktop apps) or the app under the mouse pointer (Windows Store apps).
1210+
1211+
<b>Starting with Windows 10:</b> If the value is 2 (MOUSEWHEEL_ROUTING_MOUSE_POS), mouse wheel input is delivered to the app under the mouse pointer. This is the new default, and MOUSEWHEEL_ROUTING_HYBRID is no longer available in Settings.
12101212

12111213
</td>
12121214
</tr>
@@ -1530,12 +1532,13 @@ To disable the feature, set the <i>uiParam</i> parameter to zero or 1. To enable
15301532
</dl>
15311533
</td>
15321534
<td width="60%">
1533-
Sets the routing setting for wheel button input. The routing setting determines whether wheel button input is sent to the app with focus (foreground) or the app under the mouse cursor.
1534-
1535-
The <i>pvParam</i> parameter must point to a <b>DWORD</b> variable that receives the routing option.
1536-
If the value is zero or MOUSEWHEEL_ROUTING_FOCUS, mouse wheel input is delivered to the app with focus. If the value is 1 or MOUSEWHEEL_ROUTING_HYBRID (default), mouse wheel input is delivered to the app with focus (desktop apps) or the app under the mouse cursor (Windows Store apps).
1537-
Set the <i>uiParam</i> parameter to zero.
1535+
Sets the routing setting for mouse wheel input. The routing setting determines whether mouse wheel input is sent to the app with focus (foreground) or the app under the mouse cursor.
15381536

1537+
The <i>pvParam</i> parameter must point to a <b>DWORD</b> variable that receives the routing option. Set the <i>uiParam</i> parameter to zero.
1538+
1539+
If the value is zero (MOUSEWHEEL_ROUTING_FOCUS), mouse wheel input is delivered to the app with focus. If the value is 1 (MOUSEWHEEL_ROUTING_HYBRID), mouse wheel input is delivered to the app with focus (desktop apps) or the app under the mouse pointer (Windows Store apps).
1540+
1541+
<b>Starting with Windows 10:</b> If the value is 2 (MOUSEWHEEL_ROUTING_MOUSE_POS), mouse wheel input is delivered to the app under the mouse pointer. This is the new default, and MOUSEWHEEL_ROUTING_HYBRID is no longer available in Settings.
15391542
</td>
15401543
</tr>
15411544
<tr>

0 commit comments

Comments
 (0)