/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: Buffer.hpp Date: 2022-5-18 Author: Reece ***/ #pragma once namespace Aurora::Console::ConsoleTTY { /** * @brief Is in the middle of buffering all stdout writes? */ AUKN_SYM bool IsBuffering(); /** * @brief Begin stdout buffering */ AUKN_SYM void BeginBuffering(); /** * @brief Flip framebuffer */ AUKN_SYM bool EndBuffering(); }