aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_Checkbox/UefiLessonsPkg/DisplayHIIByGuid/DisplayHIIByGuid.c
blob: 7c3c8fab9de8a67039498d83771c82b65ce89733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
 *
 * SPDX-License-Identifier: MIT
 */

#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>

#include <Library/MemoryAllocationLib.h>
#include <Protocol/FormBrowser2.h>
#include <Library/HiiLib.h>

INTN
EFIAPI
ShellAppMain (
  IN UINTN Argc,
  IN CHAR16 **Argv
  )
{
  if (Argc <=1) {
    Print(L"Usage:\n");
    Print(L"  DisplayHIIByGuid <GUID> [<GUID> [<GUID> [...]]]\n");
    return EFI_INVALID_PARAMETER;
  }

  GUID* Guids = (GUID*)AllocatePool(sizeof(GUID)*(Argc-1));

  for (UINTN i=1; i<Argc; i++) {
    RETURN_STATUS Status = StrToGuid(Argv[i], &Guids[i-1]);
    if (Status != RETURN_SUCCESS) {
      Print(L"Error! Can't convert one of the GUIDs to string\n");
      FreePool(Guids);
      return EFI_INVALID_PARAMETER;
    }
    Print(L"%g\n", Guids[i-1]);
  }


  EFI_HII_HANDLE* Handle = HiiGetHiiHandles(&Guids[0]);

  UINTN HandleCount=0;
  while (*Handle != NULL) {
    Handle++;
    HandleCount++;
    Print(L"Total HandleCount=%d\n", HandleCount);
  }
  Print(L"Total HandleCount=%d\n", HandleCount);

/*
  return EFI_SUCCESS;

  EFI_STATUS Status;
  EFI_FORM_BROWSER2_PROTOCOL* FormBrowser2;
  Status = gBS->LocateProtocol(&gEfiFormBrowser2ProtocolGuid, NULL, (VOID**)&FormBrowser2);
  if (EFI_ERROR(Status)) {
    return Status;
  }

  Status = FormBrowser2->SendForm (
                           FormBrowser2,
                           Handle,
                           1,
                           NULL,
                           0,
                           NULL,
                           NULL
                           );  

*/
  FreePool(Handle);
  FreePool(Guids);

  return EFI_SUCCESS;
}