AuroraRuntime/Include/Aurora/Console/ConsoleStd/NoncanonicalInput.hpp
Reece d47aeda082 [+] EConanonicalInput::eTab
[+] if ^::eString, [+] ...isControlSequence, isAltSequence, isShiftSequence
[*] Update semaphore from class to struct types
[*] GetProfileDomain and frens should check the result string length before returning true
2022-06-16 02:29:55 +01:00

21 lines
440 B
C++

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: NoncanonicalInput.hpp
Date: 2022-5-18
Author: Reece
***/
#pragma once
namespace Aurora::Console::ConsoleStd
{
struct NoncanonicalInput
{
ENoncanonicalInput type;
AuString string;
int scrollDeltaY {};
bool isControlSequence {};
bool isAltSequence {};
bool isShiftSequence {};
};
}