Implementation of EFI_REST_JSON_STRUCTURE_PROTOCOL, refer to UEFI spec 2.8 Section 29.7.3 EFI REST JSON Resource to C Structure Converter. Signed-off-by: Abner Chang <abner.chang@hpe.com> Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Cc: Fan Wang <fan.wang@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Nickle Wang <nickle.wang@hpe.com> Reviewed-by: Nickle Wang <nickle.wang@hpe.com>
		
			
				
	
	
		
			40 lines
		
	
	
		
			946 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			946 B
		
	
	
	
		
			INI
		
	
	
	
	
	
| ## @file
 | |
| # Implementation of EFI REST JSON Structure Protocol.
 | |
| #
 | |
| #  (C) Copyright 2020 Hewlett Packard Enterprise Development LP<BR>
 | |
| #  SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| ##
 | |
| 
 | |
| [Defines]
 | |
|   INF_VERSION               = 0x00010005
 | |
|   BASE_NAME                 = RestJsonStructureDxe
 | |
|   FILE_GUID                 = 83FAAFBF-FC4B-469F-892A-798E66A6F50A
 | |
|   MODULE_TYPE               = DXE_DRIVER
 | |
|   VERSION_STRING            = 1.0
 | |
|   ENTRY_POINT               = RestJsonStructureEntryPoint
 | |
|   UNLOAD_IMAGE              = RestJsonStructureUnload
 | |
| 
 | |
| [Packages]
 | |
|   MdePkg/MdePkg.dec
 | |
|   MdeModulePkg/MdeModulePkg.dec
 | |
|   RedfishPkg/RedfishPkg.dec
 | |
| 
 | |
| [Sources]
 | |
|   RestJsonStructureDxe.c
 | |
|   RestJsonStructureInternal.h
 | |
| 
 | |
| [LibraryClasses]
 | |
|   BaseLib
 | |
|   BaseMemoryLib
 | |
|   MemoryAllocationLib
 | |
|   UefiBootServicesTableLib
 | |
|   UefiDriverEntryPoint
 | |
|   UefiLib
 | |
| 
 | |
| [Protocols]
 | |
|   gEfiRestJsonStructureProtocolGuid    ## Producing
 | |
| 
 | |
| [Depex]
 | |
|   TRUE
 | |
| 
 |