Changeset 22394 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Aug 22, 2009 7:11:19 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51357
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/vboxapi.py
r22390 r22394 296 296 pass 297 297 298 def interruptWaitEvents(self): 299 from win32api import PostThreadMessage 300 from win32con import WM_USER 301 PostThreadMessage(self.tid, WM_USER, None, None) 302 298 303 def deinit(self): 299 304 import pythoncom … … 358 363 import xpcom 359 364 xpcom._xpcom.WaitForEvents(timeout) 365 366 def interruptWaitEvents(self): 367 import xpcom 368 xpcom._xpcom.InterruptWait() 360 369 361 370 def deinit(self): … … 434 443 pass 435 444 445 def interruptWaitEvents(self, timeout): 446 # Webservices cannot do that yet 447 pass 448 436 449 def deinit(self): 437 450 try: … … 515 528 return self.platform.waitForEvents(timeout) 516 529 530 def interruptWaitEvents(self): 531 return self.platform.interruptWaitEvents() 532 517 533 def getPerfCollector(self, vbox): 518 534 return PerfCollector(self, vbox)
Note:
See TracChangeset
for help on using the changeset viewer.