35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/** @file
|
|
FrontPage routines to handle the callbacks and browser calls
|
|
|
|
Copyright (c) 2004 - 2012, Intel Corporation. All rights reserved.<BR>
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#include "BdsPlatform.h"
|
|
|
|
/**
|
|
This function is the main entry of the platform setup entry.
|
|
The function will present the main menu of the system setup,
|
|
this is the platform reference part and can be customize.
|
|
|
|
|
|
@param TimeoutDefault The fault time out value before the system
|
|
continue to boot.
|
|
@param ConnectAllHappened The indicater to check if the connect all have
|
|
already happened.
|
|
|
|
**/
|
|
VOID
|
|
PlatformBdsEnterFrontPage (
|
|
IN UINT16 TimeoutDefault,
|
|
IN BOOLEAN ConnectAllHappened
|
|
)
|
|
{
|
|
} |