Files
slimbootloader/BootloaderCommonPkg/Include/Library/ResetSystemLib.h
T
Aiden Park b24fd2759c Cosmetic: Convert LF to CRLF
This will fully support PatchCheck.py.
- Remove all trailing whitespace
- Convert LF to CRLF by default
- Update EFI_D_* to DEBUG_*
- Re-enable CRLF check in PatchCheck.py

Signed-off-by: Aiden Park <aiden.park@intel.com>
2019-12-02 16:21:19 -08:00

27 lines
523 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