diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2012-02-16 11:02:05 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2012-02-16 11:02:05 +0000 |
commit | 9de04619852a9e83433b311e5d7ca60d0587d385 (patch) | |
tree | f5a38797fdce787d787faf582f4891ade56c724b /winsup/cygwin/autoload.cc | |
parent | fb97e87479ea60a6c3ce21b193b83991a0fc0fc9 (diff) | |
download | cygnal-9de04619852a9e83433b311e5d7ca60d0587d385.tar.gz cygnal-9de04619852a9e83433b311e5d7ca60d0587d385.tar.bz2 cygnal-9de04619852a9e83433b311e5d7ca60d0587d385.zip |
* autoload.cc (NetUseGetInfo): Define.
* fhandler_disk_file.cc (fhandler_cygdrive::opendir): Rename flptst
to drive. Call new get_disk_type function rather than is_floppy and
check SMB drives with the NetUseGetInfo function. Explain why.
* mount.cc (get_disk_type): New function to evaluate disk type from
native NT device name.
(is_floppy): Remove.
* mount.h (enum disk_type): Define.
(get_disk_type): Declare.
* path.h (is_floppy): Drop declaration.
Diffstat (limited to 'winsup/cygwin/autoload.cc')
-rw-r--r-- | winsup/cygwin/autoload.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index 442a2e695..edd72f8d9 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -406,6 +406,7 @@ LoadDLLfunc (WNetOpenEnumA, 20, mpr) LoadDLLfunc (DsGetDcNameW, 24, netapi32) LoadDLLfunc (NetApiBufferFree, 4, netapi32) +LoadDLLfunc (NetUseGetInfo, 16, netapi32) LoadDLLfunc (NetUserGetGroups, 28, netapi32) LoadDLLfunc (NetUserGetInfo, 16, netapi32) LoadDLLfunc (NetUserGetLocalGroups, 32, netapi32) |