| 237 | UOI_FLAGS = 1 |
| 238 | WSF_VISIBLE = 0x0001 |
| 239 | class USEROBJECTFLAGS(ctypes.Structure): |
| 240 | _fields_ = [("fInherit", ctypes.wintypes.BOOL), |
| 241 | ("fReserved", ctypes.wintypes.BOOL), |
| 242 | ("dwFlags", ctypes.wintypes.DWORD)] |
| 243 | dll = ctypes.windll.user32 |
| 244 | h = dll.GetProcessWindowStation() |
| 245 | if not h: |