GET_BCDE_DATA_SUBTYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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))

#endif

View code on GitHub

NtDoc

No description available.