Console.h 413 B

1234567891011121314151617181920
  1. #pragma once
  2. #include <string>
  3. #include <stdint.h>
  4. namespace il2cpp
  5. {
  6. namespace os
  7. {
  8. namespace Console
  9. {
  10. // Isatty is in File class
  11. int32_t InternalKeyAvailable(int32_t ms_timeout);
  12. bool SetBreak(bool wantBreak);
  13. bool SetEcho(bool wantEcho);
  14. bool TtySetup(const std::string& keypadXmit, const std::string& teardown, uint8_t* control_characters, int32_t** size);
  15. const char* NewLine();
  16. }
  17. }
  18. }