1 | /* $Id$ */
|
---|
2 | /** @file
|
---|
3 | * VBoxMimicry.h - Debug and logging routines implemented by VBoxDebugLib.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009,2010 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | *
|
---|
26 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | #ifndef __VBOXMIMICRY_H__
|
---|
33 | #define __VBOXMIMICRY_H__
|
---|
34 | #include <Uefi.h>
|
---|
35 | #include <Library/UefiRuntimeServicesTableLib.h>
|
---|
36 | #include <Library/UefiBootServicesTableLib.h>
|
---|
37 | #include <Library/MemoryAllocationLib.h>
|
---|
38 | #include <Library/DebugLib.h>
|
---|
39 |
|
---|
40 | #define MIMICRY_INTERFACE_COUNT 1
|
---|
41 | #define DO_9_FAKE_DECL(name) \
|
---|
42 | static EFI_STATUS name ## _fake_impl0(); \
|
---|
43 | static EFI_STATUS name ## _fake_impl1(); \
|
---|
44 | static EFI_STATUS name ## _fake_impl2(); \
|
---|
45 | static EFI_STATUS name ## _fake_impl3(); \
|
---|
46 | static EFI_STATUS name ## _fake_impl4(); \
|
---|
47 | static EFI_STATUS name ## _fake_impl5(); \
|
---|
48 | static EFI_STATUS name ## _fake_impl6(); \
|
---|
49 | static EFI_STATUS name ## _fake_impl7(); \
|
---|
50 | static EFI_STATUS name ## _fake_impl8(); \
|
---|
51 | static EFI_STATUS name ## _fake_impl9();
|
---|
52 |
|
---|
53 | #define FAKE_IMPL(name, guid) \
|
---|
54 | static EFI_STATUS name () \
|
---|
55 | { \
|
---|
56 | DEBUG((DEBUG_INFO, #name ": of %g called\n", &guid)); \
|
---|
57 | return EFI_SUCCESS; \
|
---|
58 | }
|
---|
59 |
|
---|
60 | typedef struct
|
---|
61 | {
|
---|
62 | EFI_HANDLE hImage;
|
---|
63 | } VBOXMIMICRY, *PVBOXMIMICRY;
|
---|
64 |
|
---|
65 | PVBOXMIMICRY gThis;
|
---|
66 |
|
---|
67 | EFI_STATUS install_mimic_interfaces();
|
---|
68 | EFI_STATUS uninstall_mimic_interfaces();
|
---|
69 | #endif
|
---|