]> git.proxmox.com Git - mirror_edk2.git/commitdiff
rename a file.
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 5 Apr 2011 20:18:03 +0000 (20:18 +0000)
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 5 Apr 2011 20:18:03 +0000 (20:18 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11504 6f19259b-4bc3-4df7-8a09-765794883524

ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/SmbiosView.h [new file with mode: 0644]
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/smbiosview.h [deleted file]

diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/SmbiosView.h b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/SmbiosView.h
new file mode 100644 (file)
index 0000000..3d532b4
--- /dev/null
@@ -0,0 +1,91 @@
+/** @file\r
+  Tools of clarify the content of the smbios table.\r
+\r
+  Copyright (c) 2005 - 2010, 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
+\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 _SMBIOS_VIEW_H\r
+#define _SMBIOS_VIEW_H\r
+\r
+#define STRUCTURE_TYPE_RANDOM     (UINT8) 0xFE\r
+#define STRUCTURE_TYPE_INVALID    (UINT8) 0xFF\r
+\r
+#define STRUCTURE_HANDLE_INVALID  (UINT16) 0xFFFF\r
+\r
+typedef struct {\r
+  UINT16  Index;\r
+  UINT8   Type;\r
+  UINT16  Handle;\r
+  UINT16  Addr;   // offset from table head\r
+  UINT16  Length; // total structure length\r
+} STRUCTURE_STATISTICS;\r
+\r
+/**\r
+  Query all structures Data from SMBIOS table and Display\r
+  the information to users as required display option.\r
+\r
+  @param[in] QueryType      Structure type to view.\r
+  @param[in] QueryHandle    Structure handle to view.\r
+  @param[in] Option         Display option: none,outline,normal,detail.\r
+  @param[in] RandomView     Support for -h parameter.\r
+\r
+  @retval EFI_SUCCESS           print is successful.\r
+  @retval EFI_BAD_BUFFER_SIZE   structure is out of the range of SMBIOS table.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+SMBiosView (\r
+  IN  UINT8     QueryType,\r
+  IN  UINT16    QueryHandle,\r
+  IN  UINT8     Option,\r
+  IN  BOOLEAN   RandomView\r
+  );\r
+\r
+/**\r
+  Function to initialize the global mStatisticsTable object.\r
+\r
+  @retval EFI_SUCCESS           print is successful.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+InitSmbiosTableStatistics (\r
+  VOID\r
+  );\r
+\r
+/**\r
+  Function to display the global mStatisticsTable object.\r
+\r
+  @param[in] Option             ECHO, NORMAL, or DETAIL control the amount of detail displayed.\r
+\r
+  @retval EFI_SUCCESS           print is successful.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+DisplayStatisticsTable (\r
+  IN UINT8 Option\r
+  );\r
+\r
+/**\r
+  function to return a string of the detail level.\r
+\r
+  @param[in] ShowType         The detail level whose name is desired in clear text.\r
+\r
+  @return   A pointer to a string representing the ShowType (or 'undefined type' if not known).\r
+**/\r
+CHAR16*\r
+EFIAPI\r
+GetShowTypeString (\r
+  UINT8 ShowType\r
+  );\r
+\r
+extern UINT8  gShowType;\r
+\r
+#endif\r
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/smbiosview.h b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/smbiosview.h
deleted file mode 100644 (file)
index 3d532b4..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-/** @file\r
-  Tools of clarify the content of the smbios table.\r
-\r
-  Copyright (c) 2005 - 2010, 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
-\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 _SMBIOS_VIEW_H\r
-#define _SMBIOS_VIEW_H\r
-\r
-#define STRUCTURE_TYPE_RANDOM     (UINT8) 0xFE\r
-#define STRUCTURE_TYPE_INVALID    (UINT8) 0xFF\r
-\r
-#define STRUCTURE_HANDLE_INVALID  (UINT16) 0xFFFF\r
-\r
-typedef struct {\r
-  UINT16  Index;\r
-  UINT8   Type;\r
-  UINT16  Handle;\r
-  UINT16  Addr;   // offset from table head\r
-  UINT16  Length; // total structure length\r
-} STRUCTURE_STATISTICS;\r
-\r
-/**\r
-  Query all structures Data from SMBIOS table and Display\r
-  the information to users as required display option.\r
-\r
-  @param[in] QueryType      Structure type to view.\r
-  @param[in] QueryHandle    Structure handle to view.\r
-  @param[in] Option         Display option: none,outline,normal,detail.\r
-  @param[in] RandomView     Support for -h parameter.\r
-\r
-  @retval EFI_SUCCESS           print is successful.\r
-  @retval EFI_BAD_BUFFER_SIZE   structure is out of the range of SMBIOS table.\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-SMBiosView (\r
-  IN  UINT8     QueryType,\r
-  IN  UINT16    QueryHandle,\r
-  IN  UINT8     Option,\r
-  IN  BOOLEAN   RandomView\r
-  );\r
-\r
-/**\r
-  Function to initialize the global mStatisticsTable object.\r
-\r
-  @retval EFI_SUCCESS           print is successful.\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-InitSmbiosTableStatistics (\r
-  VOID\r
-  );\r
-\r
-/**\r
-  Function to display the global mStatisticsTable object.\r
-\r
-  @param[in] Option             ECHO, NORMAL, or DETAIL control the amount of detail displayed.\r
-\r
-  @retval EFI_SUCCESS           print is successful.\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-DisplayStatisticsTable (\r
-  IN UINT8 Option\r
-  );\r
-\r
-/**\r
-  function to return a string of the detail level.\r
-\r
-  @param[in] ShowType         The detail level whose name is desired in clear text.\r
-\r
-  @return   A pointer to a string representing the ShowType (or 'undefined type' if not known).\r
-**/\r
-CHAR16*\r
-EFIAPI\r
-GetShowTypeString (\r
-  UINT8 ShowType\r
-  );\r
-\r
-extern UINT8  gShowType;\r
-\r
-#endif\r