mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 08:23:05 -05:00
dll: FspMountBroadcastDriveChange: fix drive change unitmask
This commit is contained in:
parent
b0cfdc0396
commit
a90f19dbe3
@ -407,7 +407,7 @@ static VOID FspMountBroadcastDriveChange(PWSTR MountPoint, WPARAM WParam)
|
|||||||
|
|
||||||
BOOLEAN IsLocalSystem;
|
BOOLEAN IsLocalSystem;
|
||||||
DEV_BROADCAST_VOLUME DriveChange;
|
DEV_BROADCAST_VOLUME DriveChange;
|
||||||
DWORD Flags, Recipients;
|
DWORD Recipients;
|
||||||
|
|
||||||
FspServiceContextCheck(0, &IsLocalSystem);
|
FspServiceContextCheck(0, &IsLocalSystem);
|
||||||
|
|
||||||
@ -415,12 +415,11 @@ static VOID FspMountBroadcastDriveChange(PWSTR MountPoint, WPARAM WParam)
|
|||||||
DriveChange.dbcv_size = sizeof DriveChange;
|
DriveChange.dbcv_size = sizeof DriveChange;
|
||||||
DriveChange.dbcv_devicetype = DBT_DEVTYP_VOLUME;
|
DriveChange.dbcv_devicetype = DBT_DEVTYP_VOLUME;
|
||||||
DriveChange.dbcv_flags = DBTF_NET;
|
DriveChange.dbcv_flags = DBTF_NET;
|
||||||
DriveChange.dbcv_unitmask = 1 << (MountPoint[0] - 'a');
|
DriveChange.dbcv_unitmask = 1 << ((MountPoint[0] | 0x20) - 'a');
|
||||||
|
|
||||||
Flags = BSF_POSTMESSAGE;
|
|
||||||
Recipients = BSM_APPLICATIONS | (IsLocalSystem ? BSM_ALLDESKTOPS : 0);
|
Recipients = BSM_APPLICATIONS | (IsLocalSystem ? BSM_ALLDESKTOPS : 0);
|
||||||
BroadcastSystemMessageW(
|
BroadcastSystemMessageW(
|
||||||
Flags,
|
BSF_POSTMESSAGE,
|
||||||
&Recipients,
|
&Recipients,
|
||||||
WM_DEVICECHANGE,
|
WM_DEVICECHANGE,
|
||||||
WParam,
|
WParam,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user