#ifndef _NTBCD_H
/**
* The BcdSetElementData function sets the data for a specified element in a BCD object.
*
* \param BcdObjectHandle Handle to the BCD object.
* \param BcdElement The element type to set (BCD_ELEMENT_DATATYPE).
* \param Buffer Pointer to the buffer containing the data to set.
* \param BufferSize The size of the buffer in bytes.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
BcdSetElementData(
_In_ HANDLE BcdObjectHandle,
_In_ ULONG BcdElement, // BCD_ELEMENT_DATATYPE
_In_reads_bytes_opt_(BufferSize) PVOID Buffer,
_In_ ULONG BufferSize
);
View code on GitHub
No description available.