Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
634 B

  1. /*++
  2. Copyright (c) 1999 Intel Corporation
  3. Module Name:
  4. intload
  5. Abstract:
  6. EFI support for loading internally linked in apps
  7. Revision History
  8. --*/
  9. #ifndef _INTERNAL_LOAD_INCLUDE_
  10. #define _INTERNAL_LOAD_INCLUDE_
  11. /* {D65A6B8C-71E5-4df0-A909-F0D2992B5AA9} */
  12. #define INTERNAL_LOAD_PROTOCOL \
  13. { 0xd65a6b8c, 0x71e5, 0x4df0, { 0xa9, 0x09, 0xf0, 0xd2, 0x99, 0x2b, 0x5a, 0xa9} }
  14. typedef
  15. EFI_STATUS
  16. (EFIAPI *INTERNAL_LOAD_SHELL) (
  17. VOID
  18. );
  19. typedef struct _INTERNAL_LOAD_INTERFACE {
  20. INTERNAL_LOAD_SHELL LoadShell;
  21. } INTERNAL_LOAD_INTERFACE;
  22. EFI_STATUS
  23. PlInitializeInternalLoad (
  24. VOID
  25. );
  26. #endif