2011-03-25 22:15:07 +01:00
|
|
|
/** @file
|
|
|
|
Main include file for Edit shell Debug1 function.
|
|
|
|
|
2016-07-05 07:28:53 +02:00
|
|
|
Copyright (c) 2005 - 2011, 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_EDIT_H_
|
|
|
|
#define _EFI_EDIT_H_
|
|
|
|
|
|
|
|
#include "TextEditorTypes.h"
|
|
|
|
|
|
|
|
#include "MainTextEditor.h"
|
|
|
|
#include "FileBuffer.h"
|
|
|
|
#include "EditTitleBar.h"
|
|
|
|
#include "EditStatusBar.h"
|
|
|
|
#include "EditInputBar.h"
|
|
|
|
#include "EditMenuBar.h"
|
|
|
|
#include "Misc.h"
|
|
|
|
|
2021-12-05 23:54:13 +01:00
|
|
|
extern EFI_EDITOR_GLOBAL_EDITOR MainEditor;
|
|
|
|
extern BOOLEAN EditorFirst;
|
|
|
|
extern BOOLEAN EditorExit;
|
2011-03-25 22:15:07 +01:00
|
|
|
|
|
|
|
#endif // _EFI_EDIT_H_
|