bootlibp.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*++
  2. Copyright (c) 2014 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. bootlibp.h
  5. Abstract:
  6. This header contains internal definitions for the Boot Library. Consumers
  7. outside the library itself should not include this header.
  8. Author:
  9. Evan Green 19-Feb-2014
  10. --*/
  11. //
  12. // ------------------------------------------------------------------- Includes
  13. //
  14. #include "bootlib.h"
  15. //
  16. // ---------------------------------------------------------------- Definitions
  17. //
  18. //
  19. // ------------------------------------------------------ Data Type Definitions
  20. //
  21. //
  22. // -------------------------------------------------------------------- Globals
  23. //
  24. //
  25. // -------------------------------------------------------- Function Prototypes
  26. //
  27. KSTATUS
  28. BopInitializeMemory (
  29. PBOOT_INITIALIZATION_BLOCK Parameters
  30. );
  31. /*++
  32. Routine Description:
  33. This routine initializes memory services for the boot library.
  34. Arguments:
  35. Parameters - Supplies a pointer to the application initialization
  36. information.
  37. Return Value:
  38. Status code.
  39. --*/