Mercurial > public > mercurial-scm > hg
comparison mercurial/win32.py @ 21193:07f9825865de stable
win32: add missing definition of _ERROR_NO_MORE_FILES caught by pyflakes
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Tue, 29 Apr 2014 12:35:50 +0900 |
parents | 1a9ebc83a74c |
children | 4898c37e03c0 |
comparison
equal
deleted
inserted
replaced
21192:541b2b08f323 | 21193:07f9825865de |
---|---|
22 | 22 |
23 _INVALID_HANDLE_VALUE = _HANDLE(-1).value | 23 _INVALID_HANDLE_VALUE = _HANDLE(-1).value |
24 | 24 |
25 # GetLastError | 25 # GetLastError |
26 _ERROR_SUCCESS = 0 | 26 _ERROR_SUCCESS = 0 |
27 _ERROR_NO_MORE_FILES = 18 | |
27 _ERROR_SHARING_VIOLATION = 32 | 28 _ERROR_SHARING_VIOLATION = 32 |
28 _ERROR_INVALID_PARAMETER = 87 | 29 _ERROR_INVALID_PARAMETER = 87 |
29 _ERROR_INSUFFICIENT_BUFFER = 122 | 30 _ERROR_INSUFFICIENT_BUFFER = 122 |
30 | 31 |
31 # WPARAM is defined as UINT_PTR (unsigned type) | 32 # WPARAM is defined as UINT_PTR (unsigned type) |