Console.h 426 B

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