Rewrote the comments in the libraries under 'includes' in English (excluding those inside folders)

This commit is contained in:
2026-07-29 23:34:36 +08:00
parent 3633be1995
commit a2cc28a6ab
54 changed files with 7091 additions and 899 deletions

View File

@@ -6,12 +6,12 @@ from w32.win32sync import CreateEventA, SetEvent, ResetEvent, WaitForSingleObjec
@t.Object
class Event:
"""基于 Windows Event 的事件对象,支持手动/自动重置。
"""Windows Event-based event object, supports manual-reset and auto-reset modes.
用法:
evt: Event = Event(FALSE, FALSE)
evt.set()
evt.wait()
Usage:
evt: Event = Event(FALSE, FALSE)
evt.set()
evt.wait()
"""
handle: HANDLE
manual_reset: BOOL