diff options
author | Joursoir <chat@joursoir.net> | 2021-11-15 19:12:06 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-11-15 19:12:06 +0300 |
commit | edd62f8e7d00b56bd19217b56d0d2cdf3ef6c945 (patch) | |
tree | a8b095f66a70ac64cb44e036798ae955f1eea561 /lib/tbi/screen.c | |
parent | 01c9c0c71bedbf8a82c20f41ab8b1d9f8b156af0 (diff) | |
download | ufm-edd62f8e7d00b56bd19217b56d0d2cdf3ef6c945.tar.gz ufm-edd62f8e7d00b56bd19217b56d0d2cdf3ef6c945.tar.bz2 ufm-edd62f8e7d00b56bd19217b56d0d2cdf3ef6c945.zip |
move all sources to the right place
Diffstat (limited to 'lib/tbi/screen.c')
-rw-r--r-- | lib/tbi/screen.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/tbi/screen.c b/lib/tbi/screen.c deleted file mode 100644 index ae4f2be..0000000 --- a/lib/tbi/screen.c +++ /dev/null @@ -1,36 +0,0 @@ -#include <Uefi.h> -#include <Library/DebugLib.h> -#include <Library/BaseMemoryLib.h> -#include <Library/MemoryAllocationLib.h> -#include <Library/UefiBootServicesTableLib.h> - -#include "screen.h" - -struct screen *prepare_screen(VOID) -{ - struct screen *scr; - scr = AllocateZeroPool(sizeof(struct screen)); - if(!scr) - return NULL; - - scr->stdin = gST->ConIn; - scr->stdout = gST->ConOut; - scr->stderr = gST->StdErr; - - gST->ConOut->QueryMode( - gST->ConOut, - gST->ConOut->Mode->Mode, - &(scr->columns), - &(scr->lines) - ); - scr->attr = gST->ConOut->Mode->Attribute; - - return scr; -} - -VOID forget_screen(struct screen *scr) -{ - ASSERT(scr != NULL); - - FreePool(scr); -} |