| 239 | UOI_FLAGS = 1 |
| 240 | WSF_VISIBLE = 0x0001 |
| 241 | class USEROBJECTFLAGS(ctypes.Structure): |
| 242 | _fields_ = [("fInherit", ctypes.wintypes.BOOL), |
| 243 | ("fReserved", ctypes.wintypes.BOOL), |
| 244 | ("dwFlags", ctypes.wintypes.DWORD)] |
| 245 | dll = ctypes.windll.user32 |
| 246 | h = dll.GetProcessWindowStation() |
| 247 | if not h: |
no outgoing calls
no test coverage detected
searching dependent graphs…