This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ Forces Windows to mount the drive, if this is the first time the drive is accessed. """ | |
| class _NETRESOURCEW(ctypes.Structure): | |
| _fields_ = [ | |
| ('dwScope', wt.DWORD), | |
| ('dwType', wt.DWORD), | |
| ('dwDisplayType', wt.DWORD), | |
| ('dwUsage', wt.DWORD), | |
| ('lpLocalName', wt.LPWSTR), | |
| ('lpRemoteName', wt.LPWSTR), |