Files
slimbootloader/BootloaderCommonPkg/Include/Library/ResetSystemLib.h
T
Guo Dong 5e10bd1e07 Update BSD license to BSD+Patent license
To align with EDK2, update file license
to use BSD+Patent license

Signed-off-by: Guo Dong <guo.dong@intel.com>
2019-06-13 10:46:49 -07:00

27 lines
497 B
C

/** @file
System reset Library Services. This library class defines a set of
methods that reset the whole system.
Copyright (c) 2005 - 2016, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef __RESET_SYSTEM_LIB_H__
#define __RESET_SYSTEM_LIB_H__
#include <PiPei.h>
/**
Resets the entire platform.
@param[in] ResetType The type of reset to perform.
**/
VOID
EFIAPI
ResetSystem (
IN EFI_RESET_TYPE ResetType
);
#endif