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.

30 lines
525 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. efip.h
  5. Abstract:
  6. Private loader additions to efi that aren't in the standard
  7. efi header files.
  8. Author:
  9. Scott Brenden (v-sbrend) 28 Feb 2000
  10. Revision History:
  11. --*/
  12. #define DP_PADDING 10
  13. typedef struct _EFI_DEVICE_PATH_ALIGNED {
  14. EFI_DEVICE_PATH DevPath;
  15. ULONGLONG Data[DP_PADDING];
  16. } EFI_DEVICE_PATH_ALIGNED;
  17. #define EfiAlignDp(out, in, length) RtlCopyMemory(out, in, length);