-
WNetGetConnection is not available in the win32wnet module. I noticed similar feature requests for other routines but didn't find one for WNetGetConnection, so I thought I should report it.
2009-06-09 17:06:56 UTC in Python for Windows extensions
-
You're right, it seems I've omitted the define of WIN_UNIQUE_VOLNAME_LAST_CHAR_INDEX out of the patch, and I'll make IsWinUniqueVolumeNamePath() a static public member of wxFileName as you suggested - it makes sense. Which leaves me with the question where to put the above-mentioned constant - if it was up to me to decide I'd just make it a public static const member of wxFileName as well but I...
2007-11-28 18:49:55 UTC in wxWidgets
-
this patch enables users to use wxFileName with paths that begin with windows unique volume names (\\?\Volume{guid}\) instead of a drive letter. It partly uses the UNC paths workaround, especially in wxFileName::GetVolumeString used by wxFileName::GetPath. The problem with using this approach is that if the user wants to call wxFileName.SetVolume with a unique volume name, they must know how the...
2007-11-19 11:31:44 UTC in wxWidgets
-
not a bug really, the error code of wxFileName::GetSize() wxInvalidSize wasn't declared with dll linkage so it would be visible if you link your project with the static version of wxWidgets but not if you used the DLL version. I've just added the macro which makes wxInvalidSize visible in the DLL version.
2007-10-01 15:19:08 UTC in wxWidgets