Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.7 KiB
C
Raw Permalink Normal View History

2011-03-25 21:15:07 +00:00
/** @file
2018-06-27 21:13:38 +08:00
Defines FileImage - the view of the file that is visible at any point,
2011-03-25 21:15:07 +00:00
as well as the event handlers for editing the file
2018-06-27 21:13:38 +08:00
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
2011-03-25 21:15:07 +00:00
**/
#ifndef _LIB_FILE_IMAGE_H_
#define _LIB_FILE_IMAGE_H_
#include "HexEditor.h"
/**
Initialization function for HFileImage
2018-06-27 21:13:38 +08:00
@retval EFI_SUCCESS The operation was successful.
**/
2011-03-25 21:15:07 +00:00
EFI_STATUS
HFileImageInit (
VOID
);
/**
Cleanup function for HFileImage.
@retval EFI_SUCCESS The operation was successful.
**/
2011-03-25 21:15:07 +00:00
EFI_STATUS
HFileImageCleanup (
VOID
);
/**
2018-06-27 21:13:38 +08:00
Backup function for HFileImage. Only a few fields need to be backup.
This is for making the file buffer refresh as few as possible.
@retval EFI_SUCCESS The operation was successful.
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
2011-03-25 21:15:07 +00:00
EFI_STATUS
HFileImageBackup (
VOID
);
/**
Read a file from disk into HBufferImage.
2011-03-25 21:15:07 +00:00
@param[in] FileName filename to read.
@param[in] Recover if is for recover, no information print.
2011-03-25 21:15:07 +00:00
@retval EFI_SUCCESS The operation was successful.
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
2020-07-31 17:52:32 -07:00
@retval EFI_LOAD_ERROR A load error occurred.
**/
2011-03-25 21:15:07 +00:00
EFI_STATUS
HFileImageRead (
IN CONST CHAR16 *FileName,
IN BOOLEAN Recover
2011-03-25 21:15:07 +00:00
);
/**
Save lines in HBufferImage to disk.
@param[in] FileName The file name.
@retval EFI_SUCCESS The operation was successful.
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
2020-07-31 17:52:32 -07:00
@retval EFI_LOAD_ERROR A load error occurred.
**/
2011-03-25 21:15:07 +00:00
EFI_STATUS
HFileImageSave (
IN CHAR16 *FileName
2011-03-25 21:15:07 +00:00
);
#endif