/** @file This function offers an interface to Hook IHISI Sub function AH=10h,function "GetPermission" ;****************************************************************************** ;* Copyright (c) 2015, 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 /** This function offers an interface to Hook IHISI Sub function AH=10h,function "GetPermission" @param[in, out] Permission On entry, pointer to flash Permission Address. On exit, points to updated flash Permission Address. @retval EFI_UNSUPPORTED Returns unsupported by default. @retval EFI_MEDIA_CHANGED Alter the Configuration Parameter or hook code. @retval EFI_SUCCESS The function performs the same operation as caller. The caller will skip the specified behavior and assuming that it has been handled completely by this function. */ EFI_STATUS OemSvcIhisiS10HookGetPermission ( IN OUT UINT16 *Permission ) { /*++ Todo: Add project specific code in here. --*/ return EFI_UNSUPPORTED; }