38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/** @file
|
|
Provide an opportunity to get MFG Mode status.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2021, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#include <Uefi.h>
|
|
|
|
/**
|
|
Provide an opportunity to get MFG Mode status.
|
|
|
|
@param IsMfgMode TRUE: Platform is in MFG Mode.
|
|
FALSE: Platform is not in MFG Mode.
|
|
|
|
@retval EFI_UNSUPPORTED Feature will use the internal function by default.
|
|
@retval EFI_MEDIA_CHANGED Feature will refer IsMfgMode flag to update MFG Mode status.
|
|
**/
|
|
EFI_STATUS
|
|
OemSvcGetMfgMode (
|
|
IN OUT BOOLEAN *IsMfgMode
|
|
)
|
|
{
|
|
|
|
//
|
|
// Todo:
|
|
// Add project specific code in here.
|
|
//
|
|
|
|
return EFI_UNSUPPORTED;
|
|
} |