NdisWriteErrorLogEntry
This function writes an entry to the system I/O error log file.
At a Glance
Header file: |
Ndis.h |
Windows CE versions: |
2.0 and later |
Syntax
VOID NdisWriteErrorLogEntry( IN NDIS_HANDLE NdisAdapterHandle,
IN NDIS_ERROR_CODE ErrorCode, IN ULONG NumberOfErrorValues,
IN ULONG … );
Parameters
- NdisAdapterHandle
- Handle representing the NIC that is the cause of the I/O error to be logged. This handle is an input parameter to the MiniportInitialize function.
- ErrorCode
- Specifies the NDIS_STATUS_XXX code describing the I/O error.
- NumberOfErrorValues
- Specifies the number of ULONG values to follow this parameter.
- ...
- Specifies a variable-sized array of ULONGs associated with the error to be logged.
Remarks
Windows CE does not have error-logging facilities. This function does nothing and exists only to enable existing code to compile without errors.