]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/Clipboard.h
9165d98f3060efa8a8962baa0ba3fcee0829033c
[mirror_edk2.git] / ShellPkg / Library / UefiShellDebug1CommandsLib / HexEdit / Clipboard.h
1 /** @file
2 Defines DiskImage - the view of the file that is visible at any point,
3 as well as the event handlers for editing the file
4
5 Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef _LIB_CLIP_BOARD_H_
17 #define _LIB_CLIP_BOARD_H_
18
19 #include "HexEditor.h"
20
21 EFI_STATUS
22 HClipBoardInit (
23 VOID
24 );
25 EFI_STATUS
26 HClipBoardCleanup (
27 VOID
28 );
29
30 EFI_STATUS
31 HClipBoardSet (
32 UINT8 *,
33 UINTN
34 );
35 UINTN
36 HClipBoardGet (
37 UINT8 **
38 );
39
40 #endif