]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Universal/GenericMemoryTest/Dxe/NullMemoryTest.h
Convert backslashes to forward slashes in many build files. This is necessary for...
[mirror_edk2.git] / EdkModulePkg / Universal / GenericMemoryTest / Dxe / NullMemoryTest.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 NullMemoryTest.h
15
16 Abstract:
17 The generic memory test driver definition
18
19 --*/
20
21 #ifndef _NULL_MEMORY_TEST_H
22 #define _NULL_MEMORY_TEST_H
23
24 #include "Common.h"
25
26 //
27 // Function Prototypes
28 //
29 EFI_STATUS
30 EFIAPI
31 InitializeMemoryTest (
32 IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
33 IN EXTENDMEM_COVERAGE_LEVEL Level,
34 OUT BOOLEAN *RequireSoftECCInit
35 )
36 ;
37
38 EFI_STATUS
39 EFIAPI
40 GenPerformMemoryTest (
41 IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
42 IN OUT UINT64 *TestedMemorySize,
43 OUT UINT64 *TotalMemorySize,
44 OUT BOOLEAN *ErrorOut,
45 IN BOOLEAN TestAbort
46 )
47 ;
48
49 EFI_STATUS
50 EFIAPI
51 GenMemoryTestFinished (
52 IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This
53 )
54 ;
55
56 EFI_STATUS
57 EFIAPI
58 GenCompatibleRangeTest (
59 IN EFI_GENERIC_MEMORY_TEST_PROTOCOL *This,
60 IN EFI_PHYSICAL_ADDRESS StartAddress,
61 IN UINT64 Length
62 )
63 ;
64
65 #endif