a16b27633dc79c31a10ced202936526fdc983cc6
2 A simple, basic, EDK II native, "hello" application to verify that
3 we can build applications without LibC.
5 Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #include <Library/UefiLib.h>
16 #include <Library/ShellCEntryLib.h>
19 Print a welcoming message.
21 Establishes the main structure of the application.
23 @retval 0 The application exited normally.
24 @retval Other An error occurred.
33 Print(L
"Hello there fellow Programmer.\n");
34 Print(L
"Welcome to the world of EDK II.\n");