2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2025-01-08 09:25:08 +01:00

Trying to get rid of the invalid handle errors in ansiterm

This commit is contained in:
Thomas Nagy 2014-01-05 21:31:54 +01:00
parent 107ebc9251
commit e01695d536
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64

View File

@ -17,7 +17,7 @@ from waflib.Utils import threading
wlock = threading.Lock()
try:
from ctypes import Structure, windll, c_short, c_ushort, c_ulong, c_int, byref, c_wchar, GetLastError
from ctypes import Structure, windll, c_short, c_ushort, c_ulong, c_int, byref, c_wchar, GetLastError, POINTER, c_long
except ImportError:
class AnsiTerm(object):