Module: wine Branch: master Commit: 49f1d5f7c892787d64fc84bab239ea52646ed10a URL: http://source.winehq.org/git/wine.git/?a=commit;h=49f1d5f7c892787d64fc84bab2...
Author: Ben Klein shacklein@gmail.com Date: Thu Jun 4 18:14:56 2009 +1000
mountmgr.sys: Add tracking of fixed harddisk devices.
---
dlls/mountmgr.sys/mountmgr.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/mountmgr.sys/mountmgr.c b/dlls/mountmgr.sys/mountmgr.c index 00112b9..d2b1515 100644 --- a/dlls/mountmgr.sys/mountmgr.c +++ b/dlls/mountmgr.sys/mountmgr.c @@ -264,6 +264,7 @@ static NTSTATUS define_unix_drive( const void *in_buff, SIZE_T insize ) case DRIVE_REMOTE: type = DEVICE_NETWORK; break; case DRIVE_CDROM: type = DEVICE_CDROM; break; case DRIVE_RAMDISK: type = DEVICE_RAMDISK; break; + case DRIVE_FIXED: type = DEVICE_HARDDISK_VOL; break; } return add_dos_device( letter - 'a', NULL, device, mount_point, type ); }