create_unicode_buffer(260) buf2 = ctypes.create_unicode_buffer(1024) SHGetSpecialFolderPath = ctypes.windll.shell32.SHGetSpecialFolderPathW if SHGetSpecialFolderPath(None, buf, csidl, False): if GetShortPathName(buf, buf2, 1024): return buf2.value else: return buf.value else: return None...
DiffTextBuffer: Create Unicode temp files (makes EscapeControlChars()… … 18329e8 sdottaka merged commit 7823411 into WinMerge:master Jan 14, 2019 Member sdottaka commented Jan 14, 2019 Thank you! datadiode deleted the difftextbuffer-create-unicode-temp-files branch January 14, 2019 22...