def to_rect(coords):
"""Converts a set of coordinates to a windows RECT
Converts the form [x1, y1, x2, y2] to a windows RECT structure.
Args:
coords: List of coordinates in the form [x1, y1, x2, y2].
Returns:
A windows RECT structure.
"""
rect = ctypes.wintypes.RECT(*coords)
return rect
评论列表
文章目录