https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Siyuan Fu <siyuan.fu@intel.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			763 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			763 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   Module level GUIDs used in WiFi Connection Manager.
 | |
| 
 | |
|   Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
 | |
| 
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| 
 | |
| **/
 | |
| 
 | |
| #ifndef __WIFI_CONFIG_HII_GUID_H__
 | |
| #define __WIFI_CONFIG_HII_GUID_H__
 | |
| 
 | |
| // {36AF7790-0C2F-4055-9D3D-DB72A44953CB}
 | |
| #define WIFI_CONFIG_NETWORK_LIST_REFRESH_GUID \
 | |
|   { \
 | |
|     0xc5f3c7f9, 0xfb9d, 0x49f1, { 0xbe, 0x67, 0x8b, 0xad, 0x20, 0xa7, 0xc6, 0xac } \
 | |
|   }
 | |
| 
 | |
| #define WIFI_CONFIG_CONNECT_FORM_REFRESH_GUID \
 | |
|   { \
 | |
|     0xe5faf2b2, 0x5ecc, 0x44ac, { 0x91, 0x75, 0xfb, 0x78, 0xb2, 0x8a, 0x59, 0x6c } \
 | |
|   }
 | |
| 
 | |
| #define WIFI_CONFIG_MAIN_FORM_REFRESH_GUID \
 | |
|   { \
 | |
|     0xde609972, 0xcbcc, 0x4e82, { 0x8b, 0x3e, 0x6a, 0xc5, 0xcf, 0x56, 0x73, 0x8d } \
 | |
|   }
 | |
| 
 | |
| #endif
 |