@rtype: int @return: Global ID of the process that owns this window.
(self)
| 157 | return self.hWnd |
| 158 | |
| 159 | def get_pid(self): |
| 160 | """ |
| 161 | @rtype: int |
| 162 | @return: Global ID of the process that owns this window. |
| 163 | """ |
| 164 | if self.dwProcessId is not None: |
| 165 | return self.dwProcessId |
| 166 | self.__get_pid_and_tid() |
| 167 | return self.dwProcessId |
| 168 | |
| 169 | def get_tid(self): |
| 170 | """ |
no test coverage detected