]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Move some datahub producer GUID from IntelFrameworkPkg to IntelFrameworkModulePkg.
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>
Thu, 16 Aug 2007 03:15:17 +0000 (03:15 +0000)
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>
Thu, 16 Aug 2007 03:15:17 +0000 (03:15 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3651 6f19259b-4bc3-4df7-8a09-765794883524

IntelFrameworkModulePkg/Include/FrameworkModuleBase.h [new file with mode: 0644]
IntelFrameworkModulePkg/Include/FrameworkModuleDxe.h [new file with mode: 0644]
IntelFrameworkModulePkg/Include/FrameworkModulePei.h [new file with mode: 0644]

diff --git a/IntelFrameworkModulePkg/Include/FrameworkModuleBase.h b/IntelFrameworkModulePkg/Include/FrameworkModuleBase.h
new file mode 100644 (file)
index 0000000..e4864ff
--- /dev/null
@@ -0,0 +1,32 @@
+/** @file\r
+\r
+  Root include file for IntelFrameworkModule Package Base type modules\r
+\r
+  This is the include file for any module of type base. Base modules only use \r
+  types defined via this include file and can be ported easily to any \r
+  environment. There are a set of base libraries in the Mde Package that can\r
+  be used to implement base modules.\r
+\r
+Copyright (c) 2006 - 2007, Intel Corporation\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 _FRAMEWORK_MODULE_BASE_H_\r
+#define _FRAMEWORK_MODULE_BASE_H_\r
+///\r
+/// This is the max data size including all the headers which can be passed\r
+/// as Status Code data. This data should be multiple of 8 byte\r
+/// to avoid any kind of boundary issue. Also, sum of this data size (inclusive\r
+/// of size of EFI_STATUS_CODE_DATA should not exceed the max record size of\r
+/// data hub\r
+///\r
+#define EFI_STATUS_CODE_DATA_MAX_SIZE 200\r
+\r
+#endif //_FRAMEWORK_MODULE_BASE_H_
\ No newline at end of file
diff --git a/IntelFrameworkModulePkg/Include/FrameworkModuleDxe.h b/IntelFrameworkModulePkg/Include/FrameworkModuleDxe.h
new file mode 100644 (file)
index 0000000..34ddc69
--- /dev/null
@@ -0,0 +1,26 @@
+/** @file\r
+\r
+  Root include file for IntelFrameworkModule Package DXE_CORE, DXE, SMM, SAL type modules.\r
+\r
+  This is the include file for any module of type base. Base modules only use \r
+  types defined via this include file and can be ported easily to any \r
+  environment. There are a set of base libraries in the Mde Package that can\r
+  be used to implement base modules.\r
+\r
+Copyright (c) 2006 - 2007, Intel Corporation\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 _FRAMEWORK_MODULE_DXE_H_\r
+#define _FRAMEWORK_MODULE_DXE_H_\r
+\r
+#include <FrameworkModuleBase.h>\r
+\r
+#endif //_FRAMEWORK_MODULE_DXE_H_
\ No newline at end of file
diff --git a/IntelFrameworkModulePkg/Include/FrameworkModulePei.h b/IntelFrameworkModulePkg/Include/FrameworkModulePei.h
new file mode 100644 (file)
index 0000000..3021fca
--- /dev/null
@@ -0,0 +1,26 @@
+/** @file\r
+\r
+  Root include file for IntelFrameworkModule Package SEC, PEIM, PEI_CORE type modules.\r
+\r
+  This is the include file for any module of type base. Base modules only use \r
+  types defined via this include file and can be ported easily to any \r
+  environment. There are a set of base libraries in the Mde Package that can\r
+  be used to implement base modules.\r
+\r
+Copyright (c) 2006 - 2007, Intel Corporation\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 _FRAMEWORK_MODULE_PEI_H_\r
+#define _FRAMEWORK_MODULE_PEI_H_\r
+\r
+#include <FrameworkModuleBase.h>\r
+\r
+#endif //_FRAMEWORK_MODULE_PEI_H_
\ No newline at end of file