Changeset 21737 for branches/gcc-kmk/src/kernel32/dosdevice.cpp
- Timestamp:
- Oct 24, 2011, 9:23:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/dosdevice.cpp
r21355 r21737 9 9 * Copyright 1993 Erik Bos 10 10 * Copyright 1996 Alexandre Julliard 11 * 11 * 12 12 * Project Odin Software License can be found in LICENSE.TXT 13 13 * … … 24 24 #include <os2win.h> 25 25 #include <stdio.h> 26 #include <string.h> 26 27 #include <winnls.h> 27 28 #include "unicode.h" 28 29 #include "handlemanager.h" 29 30 #include "handlenames.h" 30 #include <string.h>31 31 32 32 … … 150 150 } 151 151 *ptr = 0; 152 152 153 153 SetLastError(ERROR_SUCCESS); 154 154 return sizeof(devices)+len; … … 176 176 if(devname[1] == ':' && devname[2] == 0) { 177 177 int ret = GetDriveTypeA(devname); 178 if(ret != DRIVE_UNKNOWN) 178 if(ret != DRIVE_UNKNOWN) 179 179 { 180 180 if(bufsize < 16) {
Note:
See TracChangeset
for help on using the changeset viewer.