VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxMimicryDxe/VBoxMimicry.h@ 26438

Last change on this file since 26438 was 26438, checked in by vboxsync, 15 years ago

EFI: more OSE fixes

File size: 2.5 KB
Line 
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) \
42static EFI_STATUS name ## _fake_impl0(); \
43static EFI_STATUS name ## _fake_impl1(); \
44static EFI_STATUS name ## _fake_impl2(); \
45static EFI_STATUS name ## _fake_impl3(); \
46static EFI_STATUS name ## _fake_impl4(); \
47static EFI_STATUS name ## _fake_impl5(); \
48static EFI_STATUS name ## _fake_impl6(); \
49static EFI_STATUS name ## _fake_impl7(); \
50static EFI_STATUS name ## _fake_impl8(); \
51static EFI_STATUS name ## _fake_impl9();
52
53#define FAKE_IMPL(name, guid) \
54static EFI_STATUS name () \
55{ \
56 DEBUG((DEBUG_INFO, #name ": of %g called\n", &guid)); \
57 return EFI_SUCCESS; \
58}
59
60typedef struct
61{
62 EFI_HANDLE hImage;
63} VBOXMIMICRY, *PVBOXMIMICRY;
64
65PVBOXMIMICRY gThis;
66
67EFI_STATUS install_mimic_interfaces();
68EFI_STATUS uninstall_mimic_interfaces();
69#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette