]> git.proxmox.com Git - mirror_edk2.git/commitdiff
remove Bmp.h and ShellFile.h From MdeModulePkg to IntelFrameworkPkg
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 2 Mar 2009 07:21:37 +0000 (07:21 +0000)
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 2 Mar 2009 07:21:37 +0000 (07:21 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7763 6f19259b-4bc3-4df7-8a09-765794883524

IntelFrameworkModulePkg/Library/GenericBdsLib/Bmp.h [new file with mode: 0644]
IntelFrameworkModulePkg/Library/GenericBdsLib/bmp.h [deleted file]

diff --git a/IntelFrameworkModulePkg/Library/GenericBdsLib/Bmp.h b/IntelFrameworkModulePkg/Library/GenericBdsLib/Bmp.h
new file mode 100644 (file)
index 0000000..f1aff9b
--- /dev/null
@@ -0,0 +1,48 @@
+/** @file\r
+  This file defines BMP file header data structures.\r
+\r
+Copyright (c) 2006 - 2008, 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 _GENERIC_BDS_BMP_H__\r
+#define _GENERIC_BDS_BMP_H__\r
+\r
+#pragma pack(1)\r
+\r
+typedef struct {\r
+  UINT8   Blue;\r
+  UINT8   Green;\r
+  UINT8   Red;\r
+  UINT8   Reserved;\r
+} BMP_COLOR_MAP;\r
+\r
+typedef struct {\r
+  CHAR8         CharB;\r
+  CHAR8         CharM;\r
+  UINT32        Size;\r
+  UINT16        Reserved[2];\r
+  UINT32        ImageOffset;\r
+  UINT32        HeaderSize;\r
+  UINT32        PixelWidth;\r
+  UINT32        PixelHeight;\r
+  UINT16        Planes;          ///> Must be 1\r
+  UINT16        BitPerPixel;     ///> 1, 4, 8, or 24\r
+  UINT32        CompressionType;\r
+  UINT32        ImageSize;       ///> Compressed image size in bytes\r
+  UINT32        XPixelsPerMeter;\r
+  UINT32        YPixelsPerMeter;\r
+  UINT32        NumberOfColors;\r
+  UINT32        ImportantColors;\r
+} BMP_IMAGE_HEADER;\r
+\r
+#pragma pack()\r
+\r
+#endif\r
diff --git a/IntelFrameworkModulePkg/Library/GenericBdsLib/bmp.h b/IntelFrameworkModulePkg/Library/GenericBdsLib/bmp.h
deleted file mode 100644 (file)
index f1aff9b..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/** @file\r
-  This file defines BMP file header data structures.\r
-\r
-Copyright (c) 2006 - 2008, 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 _GENERIC_BDS_BMP_H__\r
-#define _GENERIC_BDS_BMP_H__\r
-\r
-#pragma pack(1)\r
-\r
-typedef struct {\r
-  UINT8   Blue;\r
-  UINT8   Green;\r
-  UINT8   Red;\r
-  UINT8   Reserved;\r
-} BMP_COLOR_MAP;\r
-\r
-typedef struct {\r
-  CHAR8         CharB;\r
-  CHAR8         CharM;\r
-  UINT32        Size;\r
-  UINT16        Reserved[2];\r
-  UINT32        ImageOffset;\r
-  UINT32        HeaderSize;\r
-  UINT32        PixelWidth;\r
-  UINT32        PixelHeight;\r
-  UINT16        Planes;          ///> Must be 1\r
-  UINT16        BitPerPixel;     ///> 1, 4, 8, or 24\r
-  UINT32        CompressionType;\r
-  UINT32        ImageSize;       ///> Compressed image size in bytes\r
-  UINT32        XPixelsPerMeter;\r
-  UINT32        YPixelsPerMeter;\r
-  UINT32        NumberOfColors;\r
-  UINT32        ImportantColors;\r
-} BMP_IMAGE_HEADER;\r
-\r
-#pragma pack()\r
-\r
-#endif\r