1. Add Protocol/StatusCode.h reference in FrameworkDxeCis.h

2. Add SERIAL_MODE and PARALLEL_MODE in FrameworkLegacy16.h
3. Add file FrameworkStatusCodeDataTypeId.h

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2822 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff
2007-06-28 02:38:21 +00:00
parent e5ac979a8b
commit ee65068c62
3 changed files with 351 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
#define _FRAMEWORK_DXE_CIS_H_
#include <PiDxe.h>
#include <Protocol/StatusCode.h>
typedef struct {
EFI_TABLE_HEADER Hdr;
@@ -65,4 +66,14 @@ typedef struct {
#define EFI_EVENT_SIGNAL_READY_TO_BOOT 0x00000203
#define EFI_EVENT_SIGNAL_LEGACY_BOOT 0x00000204
//
// Function prototype for invoking a function on an Application Processor
// Used by both the SMM infrastructure and the MP Services Protocol
//
typedef
VOID
(EFIAPI *EFI_AP_PROCEDURE) (
IN VOID *Buffer
);
#endif