]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - wimboot/wimboot-2.7.3/src/efi/ProcessorBind.h
1.1.07 release
[Ventoy.git] / wimboot / wimboot-2.7.3 / src / efi / ProcessorBind.h
1 #ifndef _WIMBOOT_EFI_PROCESSOR_BIND_H
2 #define _WIMBOOT_EFI_PROCESSOR_BIND_H
3
4 /*
5 * EFI header files rely on having the CPU architecture directory
6 * present in the search path in order to pick up ProcessorBind.h. We
7 * use this header file as a quick indirection layer.
8 *
9 */
10
11 #if __i386__
12 #include <efi/Ia32/ProcessorBind.h>
13 #endif
14
15 #if __x86_64__
16 #include <efi/X64/ProcessorBind.h>
17 #endif
18
19 #endif /* _WIMBOOT_EFI_PROCESSOR_BIND_H */