22 lines
422 B
C++
22 lines
422 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: ConsoleTTY.NT.hpp
|
|
Date: 2022-5-2
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console::ConsoleTTY
|
|
{
|
|
HANDLE GetTTYHandle();
|
|
|
|
void RecordFunction(const AuFunction<void()> &func);
|
|
|
|
void GetConsoleHandles(HANDLE(&handles)[2]);
|
|
|
|
bool WarmBuffering();
|
|
void BeginBuffering();
|
|
bool EndBuffering();
|
|
}
|