mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Correct the name of a field in the WIN32_FIND_DATAA and WIN32_FIND_DATAW structures.
Closes bug #1726026.
This commit is contained in:
parent
601aa414b2
commit
b4eec28e33
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ class WIN32_FIND_DATAA(Structure):
|
||||||
("dwReserved0", DWORD),
|
("dwReserved0", DWORD),
|
||||||
("dwReserved1", DWORD),
|
("dwReserved1", DWORD),
|
||||||
("cFileName", c_char * MAX_PATH),
|
("cFileName", c_char * MAX_PATH),
|
||||||
("cAlternameFileName", c_char * 14)]
|
("cAlternateFileName", c_char * 14)]
|
||||||
|
|
||||||
class WIN32_FIND_DATAW(Structure):
|
class WIN32_FIND_DATAW(Structure):
|
||||||
_fields_ = [("dwFileAttributes", DWORD),
|
_fields_ = [("dwFileAttributes", DWORD),
|
||||||
|
@ -159,7 +159,7 @@ class WIN32_FIND_DATAW(Structure):
|
||||||
("dwReserved0", DWORD),
|
("dwReserved0", DWORD),
|
||||||
("dwReserved1", DWORD),
|
("dwReserved1", DWORD),
|
||||||
("cFileName", c_wchar * MAX_PATH),
|
("cFileName", c_wchar * MAX_PATH),
|
||||||
("cAlternameFileName", c_wchar * 14)]
|
("cAlternateFileName", c_wchar * 14)]
|
||||||
|
|
||||||
__all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE',
|
__all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE',
|
||||||
'DWORD', 'FILETIME', 'HACCEL', 'HANDLE', 'HBITMAP', 'HBRUSH',
|
'DWORD', 'FILETIME', 'HACCEL', 'HANDLE', 'HBITMAP', 'HBRUSH',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue