diff options
| author | Matthew Garrett <mjg@redhat.com> | 2012-06-05 10:52:30 -0400 |
|---|---|---|
| committer | Matthew Garrett <mjg@redhat.com> | 2012-06-05 10:52:30 -0400 |
| commit | f4b2473401728a05c2f0dde032cc2ec10c13da70 (patch) | |
| tree | 0e313ced1014bc323f96573fb7d2d91d0d9c291e /shim.h | |
| parent | d0410b583e98c267c8b8ab48522b94c75e415844 (diff) | |
| download | efi-boot-shim-f4b2473401728a05c2f0dde032cc2ec10c13da70.tar.gz efi-boot-shim-f4b2473401728a05c2f0dde032cc2ec10c13da70.zip | |
Install a protocol for sharing code with grub
Diffstat (limited to 'shim.h')
| -rw-r--r-- | shim.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#define SHIM_LOCK_GUID \ + { 0x605dab50, 0xe046, 0x4300, {0xab, 0xb6, 0x3d, 0xd8, 0x10, 0xdd, 0x8b, 0x23} } + +INTERFACE_DECL(_SHIM_LOCK); + +typedef +EFI_STATUS +(EFIAPI *EFI_SHIM_LOCK_VERIFY) ( + IN VOID *buffer; + IN UINT32 size; + ); + +typedef struct _SHIM_LOCK { + EFI_SHIM_LOCK_VERIFY Verify; +} SHIM_LOCK; |
