func_system_pollsystem.rst 637 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .. _func_system_pollsystem:
  2. ==========
  3. PollSystem
  4. ==========
  5. PollSystem -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. PollSystem()
  10. Poll operating system
  11. #PollSystem returns control back to the operating system, allowing such
  12. events as keystrokes and gadget actions to be processed. Control is then
  13. returned back to your program.
  14. If #PollSystem encounters a key, mouse or app suspend/resume/terminate
  15. event, an equivalent #TEvent object event will be generated which may be intercepted using
  16. the #EmitEventHook hook.
  17. Parameters
  18. ==========
  19. Return Values
  20. =============
  21. Nothing.
  22. Examples
  23. ========
  24. See Also
  25. ========