GET_BCDE_DATA_FORMAT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTBCD_H

/**
 * Macro to extract the BCD element data format from a given data type value.
 *
 * \param DataType The value containing the BCD element information.
 * \return The extracted BCD_ELEMENT_DATATYPE_FORMAT.
 */
#define GET_BCDE_DATA_FORMAT(DataType) \
    ((BCD_ELEMENT_DATATYPE_FORMAT)(((((ULONG)(DataType))) >> 24) & 0xF))

#endif

View code on GitHub

NtDoc

No description available.