diff options
Diffstat (limited to 'Nt32Pkg/WinNtThunkDxe')
-rw-r--r-- | Nt32Pkg/WinNtThunkDxe/WinNtThunk.c | 105 | ||||
-rw-r--r-- | Nt32Pkg/WinNtThunkDxe/WinNtThunk.h | 34 | ||||
-rw-r--r-- | Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf | 51 |
3 files changed, 0 insertions, 190 deletions
diff --git a/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c b/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c deleted file mode 100644 index d0e6fccb6b..0000000000 --- a/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c +++ /dev/null @@ -1,105 +0,0 @@ -/**@file
-
-Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
-This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-Module Name:
-
- WinNtThunk.c
-
-Abstract:
-
- Produce WinNtThunk protocol and it's associated device path and controller
- state protocols. WinNtThunk is to the NT emulation environment as
- PCI_ROOT_BRIGE is to real hardware. The WinNtBusDriver is the child of this
- driver.
-
- Since we are a root hardware abstraction we do not install a Driver Binding
- protocol on this handle. This driver can only support one one WinNtThunk protocol
- in the system, since the device path is hard coded.
-
-**/
-
-//
-// The package level header files this module uses
-//
-#include <Uefi.h>
-#include <WinNtDxe.h>
-//
-// The protocols, PPI and GUID defintions for this module
-//
-#include <Protocol/WinNtThunk.h>
-#include <Protocol/DevicePath.h>
-//
-// The Library classes this module consumes
-//
-#include <Library/UefiDriverEntryPoint.h>
-#include <Library/WinNtLib.h>
-#include <Library/UefiBootServicesTableLib.h>
-#include <Library/DevicePathLib.h>
-
-#include "WinNtThunk.h"
-
-//
-// WinNtThunk Device Path Protocol Instance
-//
-WIN_NT_THUNK_DEVICE_PATH mWinNtThunkDevicePath = {
- {
- HARDWARE_DEVICE_PATH,
- HW_VENDOR_DP,
- (UINT8) (sizeof (VENDOR_DEVICE_PATH)),
- (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8),
- EFI_WIN_NT_THUNK_PROTOCOL_GUID,
- },
- {
- END_DEVICE_PATH_TYPE,
- END_ENTIRE_DEVICE_PATH_SUBTYPE,
- END_DEVICE_PATH_LENGTH,
- 0
- }
-};
-
-
-EFI_STATUS
-EFIAPI
-InitializeWinNtThunk (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
-/*++
-
-Routine Description:
- Install WinNtThunk Protocol and it's associated Device Path protocol
-
-Arguments:
- (Standard EFI Image entry - EFI_IMAGE_ENTRY_POINT)
-
-Returns:
- EFI_SUCEESS - WinNtThunk protocol is added or error status from
- gBS->InstallMultiProtocolInterfaces().
-
---*/
-// TODO: ImageHandle - add argument and description to function comment
-// TODO: SystemTable - add argument and description to function comment
-{
- EFI_STATUS Status;
- EFI_HANDLE ControllerHandle;
-
- ControllerHandle = NULL;
- Status = gBS->InstallMultipleProtocolInterfaces (
- &ControllerHandle,
- &gEfiWinNtThunkProtocolGuid,
- gWinNt,
- &gEfiDevicePathProtocolGuid,
- &mWinNtThunkDevicePath,
- NULL
- );
-
- return Status;
-}
diff --git a/Nt32Pkg/WinNtThunkDxe/WinNtThunk.h b/Nt32Pkg/WinNtThunkDxe/WinNtThunk.h deleted file mode 100644 index 9f659a5049..0000000000 --- a/Nt32Pkg/WinNtThunkDxe/WinNtThunk.h +++ /dev/null @@ -1,34 +0,0 @@ -/**@file
-
-Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
-This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-Module Name:
-
- WinNtThunk.h
-
-Abstract:
-
-**/
-
-#ifndef _WIN_NT_THUNK_H_
-#define _WIN_NT_THUNK_H_
-
-// TODO: add protective #ifndef
-
-
-//
-// WinNtThunk Device Path Protocol Instance Type
-//
-typedef struct {
- VENDOR_DEVICE_PATH Vendor;
- EFI_DEVICE_PATH_PROTOCOL EndDevicePath;
-} WIN_NT_THUNK_DEVICE_PATH;
-
-#endif
diff --git a/Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf b/Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf deleted file mode 100644 index a5b0dfe927..0000000000 --- a/Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf +++ /dev/null @@ -1,51 +0,0 @@ -## @file
-# A DXE driver to produce EFI_WIN_NT_THUNK_PROTOCOL
-#
-# EFI_WIN_NT_THUNK_PROTOCOL is a table of pointers to various Windows APIs used by various drivers to accomplish certain task in an NT32 emulator.
-# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
-#
-# This program and the accompanying materials
-# are licensed and made available under the terms and conditions of the BSD License
-# which accompanies this distribution. The full text of the license may be found at
-# http://opensource.org/licenses/bsd-license.php
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-#
-#
-##
-
-[Defines]
- INF_VERSION = 0x00010005
- BASE_NAME = WinNtThunkDxe
- FILE_GUID = 0C95A916-A006-11d4-BCFA-0080C73C8881
- MODULE_TYPE = DXE_DRIVER
- VERSION_STRING = 1.0
-
- ENTRY_POINT = InitializeWinNtThunk
-
-#
-# The following information is for reference only and not required by the build tools.
-#
-# VALID_ARCHITECTURES = IA32
-#
-
-[Sources]
- WinNtThunk.c
- WinNtThunk.h
-
-
-[Packages]
- MdePkg/MdePkg.dec
- Nt32Pkg/Nt32Pkg.dec
-
-[LibraryClasses]
- UefiBootServicesTableLib
- WinNtLib
- UefiDriverEntryPoint
-
-[Protocols]
- gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiWinNtThunkProtocolGuid # PROTOCOL ALWAYS_PRODUCED
-
-[depex]
- TRUE
\ No newline at end of file |