Leaked source code of windows server 2003
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.

31 lines
454 B

  1. /*++
  2. Copyright (c) 1999 Intel Corporation
  3. Module Name:
  4. initplat.c
  5. Abstract:
  6. Functions to make SAL and PAL proc calls
  7. Revision History
  8. --*/
  9. #include "lib.h"
  10. /* #include "palproc.h" */
  11. VOID
  12. InitializeLibPlatform (
  13. IN EFI_HANDLE ImageHandle,
  14. IN EFI_SYSTEM_TABLE *SystemTable
  15. )
  16. {
  17. PLABEL SalPlabel;
  18. UINT64 PalEntry;
  19. LibInitSalAndPalProc (&SalPlabel, &PalEntry);
  20. }