]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.h
c4f2ea6382602754cf1a3043657847d8f0ec0034
[mirror_edk2.git] / ShellPkg / Library / UefiShellDebug1CommandsLib / HexEdit / MainHexEditor.h
1 /** @file
2 Defines the Main Editor data type -
3 - Global variables
4 - Instances of the other objects of the editor
5 - Main Interfaces
6
7 Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR>
8 This program and the accompanying materials
9 are licensed and made available under the terms and conditions of the BSD License
10 which accompanies this distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #ifndef _LIB_EDITOR_H_
19 #define _LIB_EDITOR_H_
20
21 #include "HexEditor.h"
22
23 EFI_STATUS
24 HMainEditorInit (
25 VOID
26 );
27 EFI_STATUS
28 HMainEditorCleanup (
29 VOID
30 );
31 EFI_STATUS
32 HMainEditorRefresh (
33 VOID
34 );
35 EFI_STATUS
36 HMainEditorKeyInput (
37 VOID
38 );
39
40 /**
41 Backup function for MainEditor.
42 **/
43 VOID
44 EFIAPI
45 HMainEditorBackup (
46 VOID
47 );
48 #endif