From ad48e6c00502be231e241980c51a00ccf0d36d7a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 11 Jan 2021 13:54:04 -0500 Subject: [PATCH] See if we can use pywin32 GetFileType --- src/allmydata/windows/fixups.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/allmydata/windows/fixups.py b/src/allmydata/windows/fixups.py index 5d5f25985..45b69cd87 100644 --- a/src/allmydata/windows/fixups.py +++ b/src/allmydata/windows/fixups.py @@ -24,6 +24,10 @@ from win32con import ( from win32file import ( INVALID_HANDLE_VALUE, FILE_TYPE_CHAR, + + # + # DWORD WINAPI GetFileType(DWORD hFile); + GetFileType, ) # This one not exposed by pywin32 as far as I can tell. @@ -113,19 +117,10 @@ def initialize(): # and TZOmegaTZIOY # . try: - # - # - # DWORD WINAPI GetFileType(DWORD hFile); # # # BOOL WINAPI GetConsoleMode(HANDLE hConsole, LPDWORD lpMode); - GetFileType = WINFUNCTYPE( - DWORD, DWORD, - use_last_error=True - )(("GetFileType", windll.kernel32)) - - GetConsoleMode = WINFUNCTYPE( BOOL, HANDLE, POINTER(DWORD), use_last_error=True