diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-03 03:31:32 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-03 03:31:32 +0000 |
commit | 033d0e5ff6324045ffbb1c95cbecb2215e2d6716 (patch) | |
tree | 71abca8b7f658e5b350d8f9d992f95c28e9e6adb /InOsEmuPkg/Include | |
parent | 26fab514ee8fc04721d3940c7db6a60df4e8ed1d (diff) | |
download | edk2-platforms-033d0e5ff6324045ffbb1c95cbecb2215e2d6716.tar.xz |
Get BlockIo mapping interfaces working. Still need to work on detecting block size of devices, but you can map a .dmg file no problem at this point.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11724 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'InOsEmuPkg/Include')
-rw-r--r-- | InOsEmuPkg/Include/Protocol/EmuBlockIo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/InOsEmuPkg/Include/Protocol/EmuBlockIo.h b/InOsEmuPkg/Include/Protocol/EmuBlockIo.h index f31124dc01..26d6bb8518 100644 --- a/InOsEmuPkg/Include/Protocol/EmuBlockIo.h +++ b/InOsEmuPkg/Include/Protocol/EmuBlockIo.h @@ -23,7 +23,7 @@ #include <Protocol/BlockIo2.h>
#define EMU_BLOCK_IO_PROTOCOL_GUID \
- { 0x3EC5F7E0, 0x1124, 0xDF45, { 0x9F, 0x96, 0x7D, 0xD6, 0x63, 0xC0, 0xAF, 0xE7 } }
+{ 0x6888A4AE, 0xAFCE, 0xE84B, { 0x91, 0x02, 0xF7, 0xB9, 0xDA, 0xE6, 0xA0, 0x30 } }
typedef struct _EMU_BLOCK_IO_PROTOCOL EMU_BLOCK_IO_PROTOCOL;
@@ -90,7 +90,7 @@ EFI_STATUS IN EFI_LBA LBA,
IN OUT EFI_BLOCK_IO2_TOKEN *Token,
IN UINTN BufferSize,
- OUT VOID *Buffer
+ OUT VOID *Buffer
);
/**
@@ -127,7 +127,7 @@ EFI_STATUS typedef
EFI_STATUS
(EFIAPI *EMU_BLOCK_WRITE) (
- IN EMU_BLOCK_IO_PROTOCOL *This,
+ IN EMU_BLOCK_IO_PROTOCOL *This,
IN UINT32 MediaId,
IN EFI_LBA LBA,
IN OUT EFI_BLOCK_IO2_TOKEN *Token,
|