1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 00:07:14 +03:00

protocol: Expand slightly on WNDCLASS with some references.

This commit is contained in:
Athanasius 2021-03-08 17:42:12 +00:00
parent 1692cac51c
commit 1504f25d8f

View File

@ -120,7 +120,12 @@ elif sys.platform == 'win32' and getattr(sys, 'frozen', False) and not is_wine a
)
class WNDCLASS(Structure):
"""A WNDCLASS structure."""
"""
A WNDCLASS structure.
Ref: <https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-wndclassa>
<https://docs.microsoft.com/en-us/windows/win32/intl/registering-window-classes>
"""
_fields_ = [
('style', UINT),