1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

tools: define ERROR_INVALID_PARAMETER in utils.py

Fixes #865.
This commit is contained in:
Bert Belder 2018-09-30 11:58:42 -07:00
parent 062b22fe56
commit 4c6f37cec3
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -226,6 +226,7 @@ def enable_ansi_colors_win10():
# Generic constants.
NULL = ctypes.c_void_p(0).value
INVALID_HANDLE_VALUE = ctypes.c_void_p(-1).value
ERROR_INVALID_PARAMETER = 87
# CreateFile flags.
# yapf: disable