summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/Source/String.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-03 20:39:06 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-03 20:39:06 +0100
commitf99e383775fa43c5c1354067962b1590ff2abdae (patch)
treef83a9b232c0424963fc9989b517e53f903ee036f /Private/NewBoot/Source/String.cxx
parent0ca5d0d92ee326f3deda797403c27090bd0784ab (diff)
NewBoot: Will work on AHCI instead, ATA is not getting any further in
the future. Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/NewBoot/Source/String.cxx')
-rw-r--r--Private/NewBoot/Source/String.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/Private/NewBoot/Source/String.cxx b/Private/NewBoot/Source/String.cxx
index a2d19f1f..e080a01d 100644
--- a/Private/NewBoot/Source/String.cxx
+++ b/Private/NewBoot/Source/String.cxx
@@ -61,28 +61,3 @@ HCore::SizeT BSetMem(CharacterType *src, const CharacterType byte,
return cnt;
}
-
-/////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-/**
-@brief puts wrapper over EFI.
-*/
-BTextWriter &BTextWriter::WriteString(const CharacterType *str) {
- if (*str == 0 || !str) return *this;
-
- ST->ConOut->OutputString(ST->ConOut, str);
-
- return *this;
-}
-
-/**
-@brief putc wrapper over EFI.
-*/
-BTextWriter &BTextWriter::WriteCharacter(CharacterType c) {
- EfiCharType str[2];
- str[0] = c;
- str[1] = 0;
- ST->ConOut->OutputString(ST->ConOut, str);
-
- return *this;
-}