Module: wine Branch: master Commit: aa96c58db5628c6da93a05b4d796a4e64cccf5c9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=aa96c58db5628c6da93a05b4d7...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Thu Apr 18 12:39:11 2013 +0900
mountmgr.sys: Add a missing entry for DEVICE_DVD to match mountmgr.h enumeration types.
---
dlls/mountmgr.sys/device.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/mountmgr.sys/device.c b/dlls/mountmgr.sys/device.c index 8367cba..005ec5e 100644 --- a/dlls/mountmgr.sys/device.c +++ b/dlls/mountmgr.sys/device.c @@ -48,6 +48,7 @@ static const WCHAR drive_types[][8] = {'h','d',0}, /* DEVICE_HARDDISK_VOL */ {'f','l','o','p','p','y',0}, /* DEVICE_FLOPPY */ {'c','d','r','o','m',0}, /* DEVICE_CDROM */ + {'c','d','r','o','m',0}, /* DEVICE_DVD */ {'n','e','t','w','o','r','k',0}, /* DEVICE_NETWORK */ {'r','a','m','d','i','s','k',0} /* DEVICE_RAMDISK */ };