mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
Regen generated_def
This commit is contained in:
@@ -10603,19 +10603,39 @@ _PEB_LDR_DATA
|
||||
|
||||
.. class:: _PEB_LDR_DATA
|
||||
|
||||
.. attribute:: Reserved1
|
||||
.. attribute:: Length
|
||||
|
||||
:class:`BYTE` ``[8]``
|
||||
:class:`ULONG`
|
||||
|
||||
|
||||
.. attribute:: Reserved2
|
||||
.. attribute:: Initialized
|
||||
|
||||
:class:`PVOID` ``[3]``
|
||||
:class:`BYTE`
|
||||
|
||||
|
||||
.. attribute:: SsHandle
|
||||
|
||||
:class:`PVOID`
|
||||
|
||||
|
||||
.. attribute:: InLoadOrderModuleList
|
||||
|
||||
:class:`_LIST_ENTRY`
|
||||
|
||||
|
||||
.. attribute:: InMemoryOrderModuleList
|
||||
|
||||
:class:`LIST_ENTRY`
|
||||
:class:`_LIST_ENTRY`
|
||||
|
||||
|
||||
.. attribute:: InInitializationOrderModuleList
|
||||
|
||||
:class:`_LIST_ENTRY`
|
||||
|
||||
|
||||
.. attribute:: EntryInProgress
|
||||
|
||||
:class:`PVOID`
|
||||
|
||||
_ANON_PEB_SYSTEM_DEPENDENT_02
|
||||
'''''''''''''''''''''''''''''
|
||||
|
||||
@@ -4788,9 +4788,13 @@ PLDR_DATA_TABLE_ENTRY = POINTER(_LDR_DATA_TABLE_ENTRY)
|
||||
|
||||
class _PEB_LDR_DATA(Structure):
|
||||
_fields_ = [
|
||||
("Reserved1", BYTE * (8)),
|
||||
("Reserved2", PVOID * (3)),
|
||||
("InMemoryOrderModuleList", LIST_ENTRY),
|
||||
("Length", ULONG),
|
||||
("Initialized", BYTE),
|
||||
("SsHandle", PVOID),
|
||||
("InLoadOrderModuleList", _LIST_ENTRY),
|
||||
("InMemoryOrderModuleList", _LIST_ENTRY),
|
||||
("InInitializationOrderModuleList", _LIST_ENTRY),
|
||||
("EntryInProgress", PVOID),
|
||||
]
|
||||
PEB_LDR_DATA = _PEB_LDR_DATA
|
||||
PPEB_LDR_DATA = POINTER(_PEB_LDR_DATA)
|
||||
|
||||
Reference in New Issue
Block a user