#ifndef _NTBCD_H
/**
* Macro to extract the BCD element subtype identifier from a given data type value.
*
* \param DataType The value containing the BCD element information.
* \return The extracted subtype identifier as a ULONG value.
*/
#define GET_BCDE_DATA_SUBTYPE(DataType) \
((ULONG)((((ULONG)(DataType))) & 0x00FFFFFF))
View code on GitHubNo description available.