]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / DxeServicesTableLib / DxeServicesTableLib.c
index fac2dde8dc7341707214715cdabd50e287ba569c..e39cd1bc389c64ad9d1c74ed9c12866b50a7326e 100644 (file)
@@ -1,8 +1,19 @@
 /** @file\r
-  DXE Library.\r
+  This library implement library class DxeServiceTableLib.\r
+  It produce EFI_DXE_SERVICE pointer in global variable gDS in library's constructure.\r
+  \r
+  A DXE driver can use gDS pointer to access services in EFI_DXE_SERVICE, if this\r
+  DXE driver declare that use DxeServicesTableLib library class and link to this \r
+  library instance.\r
 \r
-  Copyright (c) 2006, Intel Corporation<BR>\r
-  All rights reserved. This program and the accompanying materials\r
+  Please attention this library instance can not be used util EFI_SYSTEM_TABLE was \r
+  initialized.\r
+  \r
+  This library contains contruct function to retrieve EFI_DXE_SERIVCE, this construct\r
+  function will be invoked in DXE driver's autogen file.\r
+\r
+  Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
+  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
   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
-  Module Name:  DxeServicesTableLib.c\r
-\r
 **/\r
 \r
+#include <PiDxe.h>\r
+#include <Guid/DxeServices.h>\r
+#include <Library/DxeServicesTableLib.h>\r
+#include <Library/DebugLib.h>\r
+#include <Library/UefiLib.h>\r
 \r
 //\r
-// Cached copy of the System Configuration Table\r
+// Cache copy of the DXE Services Table\r
 //\r
 EFI_DXE_SERVICES  *gDS      = NULL;\r
 \r
 /**\r
-  The constructor function caches the pointer of System Configuration Table.\r
+  The constructor function caches the pointer of DXE Services Table.\r
 \r
-  The constructor function caches the pointer of System Configuration Table.\r
+  The constructor function caches the pointer of DXE Services Table.\r
   It will ASSERT() if that operation fails.\r
-  It will ASSERT() if the pointer of System Configuration Table is NULL.\r
+  It will ASSERT() if the pointer of DXE Services Table is NULL.\r
   It will always return EFI_SUCCESS.\r
 \r
   @param  ImageHandle   The firmware allocated handle for the EFI image.\r
@@ -35,6 +49,7 @@ EFI_DXE_SERVICES  *gDS      = NULL;
 \r
 **/\r
 EFI_STATUS\r
+EFIAPI\r
 DxeServicesTableLibConstructor (\r
   IN EFI_HANDLE        ImageHandle,\r
   IN EFI_SYSTEM_TABLE  *SystemTable\r
@@ -43,7 +58,7 @@ DxeServicesTableLibConstructor (
   EFI_STATUS  Status;\r
 \r
   //\r
-  // Cached copy of the System Configuration Table\r
+  // Cache copy of the DXE Services Table\r
   //\r
   Status = EfiGetSystemConfigurationTable (&gEfiDxeServicesTableGuid, (VOID **) &gDS);\r
   ASSERT_EFI_ERROR (Status);\r