mirror of https://github.com/acidanthera/audk.git
17 lines
375 B
C
17 lines
375 B
C
#ifndef __FSPUPD_H__
|
|
#define __FSPUPD_H__
|
|
|
|
#include <FspEas.h>
|
|
|
|
#pragma pack(1)
|
|
|
|
#define FSPT_UPD_SIGNATURE 0x545F4450554D4551 /* 'QEMUPD_T' */
|
|
|
|
#define FSPM_UPD_SIGNATURE 0x4D5F4450554D4551 /* 'QEMUPD_M' */
|
|
|
|
#define FSPS_UPD_SIGNATURE 0x535F4450554D4551 /* 'QEMUPD_S' */
|
|
|
|
#pragma pack()
|
|
|
|
#endif
|