REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the EmulatorPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			653 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			653 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*++ @file
 | 
						|
 | 
						|
Copyright (c) 2011, Apple Inc. All rights reserved.
 | 
						|
SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#include <Protocol/SimpleTextInEx.h>
 | 
						|
 | 
						|
/**
 | 
						|
  KeyMapMake gets called on key presses.
 | 
						|
 | 
						|
  @param  KeyData       Key that was pressed.
 | 
						|
 | 
						|
  @retval EFI_SUCCESS   The constructor always returns EFI_SUCCESS.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
EFIAPI
 | 
						|
KeyMapMake (
 | 
						|
  IN EFI_KEY_DATA  *KeyData
 | 
						|
  );
 | 
						|
 | 
						|
/**
 | 
						|
  KeyMapBreak gets called on key releases.
 | 
						|
 | 
						|
  @param  KeyData       Key that was pressed.
 | 
						|
 | 
						|
  @retval EFI_SUCCESS   The constructor always returns EFI_SUCCESS.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
EFIAPI
 | 
						|
KeyMapBreak (
 | 
						|
  IN EFI_KEY_DATA  *KeyData
 | 
						|
  );
 |