#ifndef _NTBCD_H
/**
* Constructs a BCD (Boot Configuration Data) application object identifier.
* This macro creates a BCD object identifier for an application by combining the object type,
* image type, and application type into a single value using the MAKE_BCD_OBJECT macro.
* \param ImageType The type of the image (e.g., Windows Boot Loader, Windows Resume Application).
* \param ApplicationType The specific application type within the image type.
* \return A value representing the BCD application object identifier.
*/
#define MAKE_BCD_APPLICATION_OBJECT(ImageType, ApplicationType) \
MAKE_BCD_OBJECT(BCD_OBJECT_TYPE_APPLICATION, (ULONG)(ImageType), (ULONG)(ApplicationType))
View code on GitHubNo description available.