]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MemImage.h
add Edit and HexEdit commands.
[mirror_edk2.git] / ShellPkg / Library / UefiShellDebug1CommandsLib / HexEdit / MemImage.h
CommitLineData
632820d1 1/** @file\r
2 Defines MemImage - the view of the file that is visible at any point, \r
3 as well as the event handlers for editing the file\r
4 \r
5 Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR>\r
6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef _LIB_MEM_IMAGE_H_\r
17#define _LIB_MEM_IMAGE_H_\r
18\r
19#include "HexEditor.h"\r
20\r
21EFI_STATUS\r
22HMemImageInit (\r
23 VOID\r
24 );\r
25EFI_STATUS\r
26HMemImageCleanup (\r
27 VOID\r
28 );\r
29EFI_STATUS\r
30HMemImageBackup (\r
31 VOID\r
32 );\r
33\r
34EFI_STATUS\r
35HMemImageSetMemOffsetSize (\r
36 IN UINTN,\r
37 IN UINTN\r
38 );\r
39\r
40EFI_STATUS\r
41HMemImageRead (\r
42 IN UINTN,\r
43 IN UINTN,\r
44 IN BOOLEAN\r
45 );\r
46EFI_STATUS\r
47HMemImageSave (\r
48 IN UINTN,\r
49 IN UINTN\r
50 );\r
51\r
52#endif\r