2011-03-25 22:15:07 +01:00
|
|
|
/** @file
|
|
|
|
Main include file for hex editor
|
2018-06-27 15:13:38 +02:00
|
|
|
|
|
|
|
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR>
|
2019-04-04 01:07:06 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-03-25 22:15:07 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _EFI_SHELL_HEXEDIT_H_
|
|
|
|
#define _EFI_SHELL_HEXEDIT_H_
|
|
|
|
|
|
|
|
#include "UefiShellDebug1CommandsLib.h"
|
|
|
|
#include "HexEditorTypes.h"
|
|
|
|
|
|
|
|
#include "MainHexEditor.h"
|
|
|
|
|
|
|
|
#include "BufferImage.h"
|
|
|
|
#include "FileImage.h"
|
|
|
|
#include "DiskImage.h"
|
|
|
|
#include "MemImage.h"
|
|
|
|
|
|
|
|
#include "EditTitleBar.h"
|
|
|
|
#include "EditStatusBar.h"
|
|
|
|
#include "EditInputBar.h"
|
|
|
|
#include "EditMenuBar.h"
|
|
|
|
|
|
|
|
#include "Misc.h"
|
|
|
|
|
|
|
|
#include "Clipboard.h"
|
|
|
|
|
|
|
|
extern HEFI_EDITOR_GLOBAL_EDITOR HMainEditor;
|
|
|
|
extern BOOLEAN HEditorFirst;
|
|
|
|
extern BOOLEAN HEditorExit;
|
|
|
|
|
|
|
|
#endif // _HEDITOR_H
|