]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OldMdePkg/Include/Library/UefiDriverEntryPoint.h
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / OldMdePkg / Include / Library / UefiDriverEntryPoint.h
diff --git a/OldMdePkg/Include/Library/UefiDriverEntryPoint.h b/OldMdePkg/Include/Library/UefiDriverEntryPoint.h
deleted file mode 100644 (file)
index 6269876..0000000
+++ /dev/null
@@ -1,154 +0,0 @@
-/** @file\r
-  Entry point to a DXE Boot Services Driver\r
-\r
-Copyright (c) 2006, Intel Corporation<BR>\r
-All rights reserved. This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
-**/\r
-\r
-#ifndef __MODULE_ENTRY_POINT_H__\r
-#define __MODULE_ENTRY_POINT_H__\r
-\r
-//\r
-// Declare the EFI/UEFI Specification Revision to which this driver is implemented \r
-//\r
-extern const UINT32                   _gUefiDriverRevision;\r
-\r
-//\r
-// Declare the number of entry points in the image. \r
-//\r
-extern const UINT8                    _gDriverEntryPointCount;\r
-\r
-//\r
-// Declare the number of unload handler in the image. \r
-//\r
-extern const UINT8                    _gDriverUnloadImageCount;\r
-\r
-//\r
-// Declare the arrary of Boot Sevice Exit Event callbacks . \r
-//\r
-extern const EFI_EVENT_NOTIFY         _gDriverExitBootServicesEvent[];\r
-\r
-//\r
-// Declare the arrary of Virtual Address Change Event callbacks . \r
-//\r
-extern const EFI_EVENT_NOTIFY         _gDriverSetVirtualAddressMapEvent[];\r
-\r
-/**\r
-  Enrty point to DXE SMM Driver.\r
-\r
-  @param  ImageHandle ImageHandle of the loaded driver.\r
-  @param  SystemTable Pointer to the EFI System Table.\r
-\r
-  @retval  EFI_SUCCESS One or more of the drivers returned a success code.\r
-  @retval  !EFI_SUCESS The return status from the last driver entry point in the list.\r
-\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-_ModuleEntryPoint (\r
-  IN EFI_HANDLE        ImageHandle,\r
-  IN EFI_SYSTEM_TABLE  *SystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Enrty point wrapper of DXE Driver.\r
-\r
-  @param  ImageHandle ImageHandle of the loaded driver.\r
-  @param  SystemTable Pointer to the EFI System Table.\r
-\r
-  @retval  EFI_SUCCESS One or more of the drivers returned a success code.\r
-  @retval  !EFI_SUCESS The return status from the last driver entry point in the list.\r
-\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-EfiMain (\r
-  IN EFI_HANDLE        ImageHandle,\r
-  IN EFI_SYSTEM_TABLE  *SystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Computes the cummulative return status for the driver entry point and perform\r
-  a long jump back into DriverEntryPoint().\r
-\r
-  @param  Status Status returned by the driver that is exiting.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-ExitDriver (\r
-  IN EFI_STATUS  Status\r
-  );\r
-\r
-\r
-/**\r
-  Call constructs for all libraries. Automatics Generated by tool.\r
-\r
-  @param  ImageHandle ImageHandle of the loaded driver.\r
-  @param  SystemTable Pointer to the EFI System Table.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-ProcessLibraryConstructorList (\r
-  IN EFI_HANDLE        ImageHandle,\r
-  IN EFI_SYSTEM_TABLE  *SystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Call destructors for all libraries. Automatics Generated by tool.\r
-\r
-  @param  ImageHandle ImageHandle of the loaded driver.\r
-  @param  SystemTable Pointer to the EFI System Table.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-ProcessLibraryDestructorList (\r
-  IN EFI_HANDLE        ImageHandle,\r
-  IN EFI_SYSTEM_TABLE  *SystemTable\r
-  );\r
-\r
-/**\r
-  Call the list of driver entry points. Automatics Generated by tool.\r
-\r
-  @param  ImageHandle ImageHandle of the loaded driver.\r
-  @param  SystemTable Pointer to the EFI System Table.\r
-\r
-  @return Status returned by entry points of drivers.  \r
\r
-**/\r
-\r
-EFI_STATUS\r
-EFIAPI\r
-ProcessModuleEntryPointList (\r
-  IN EFI_HANDLE        ImageHandle,\r
-  IN EFI_SYSTEM_TABLE  *SystemTable\r
-  );\r
-\r
-\r
-/**\r
-  Call the unload handlers for all the modules. Automatics Generated by tool.\r
-\r
-  @param  ImageHandle ImageHandle of the loaded driver.\r
\r
-  @return Status returned by unload handlers of drivers.\r
-\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-ProcessModuleUnloadList (\r
-  IN EFI_HANDLE  ImageHandle\r
-  );\r
-\r
-#endif\r