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
1 changed files with 1 additions and 1 deletions

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):