2022-05-03 04:31:49 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
2022-05-04 15:34:02 +00:00
|
|
|
File: ConsoleTTY.Unix.hpp
|
2022-05-03 04:31:49 +00:00
|
|
|
Date: 2022-5-2
|
|
|
|
Author: Reece
|
|
|
|
***/
|
2022-05-13 12:01:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-06-23 12:25:20 +00:00
|
|
|
namespace Aurora::Console::ConsoleTTY
|
2022-05-13 12:01:49 +00:00
|
|
|
{
|
|
|
|
bool IsBuffering();
|
|
|
|
void BeginBuffering();
|
2022-06-12 13:53:35 +00:00
|
|
|
bool EndBuffering();
|
2022-05-13 12:01:49 +00:00
|
|
|
}
|