NdisWriteErrorLogEntry (Windows Embedded CE 6.0)

1/6/2010

This function writes an entry to the system I/O error log file.

Syntax

VOID NdisWriteErrorLogEntry(
  NDIS_HANDLE NdisAdapterHandle,
  NDIS_ERROR_CODE ErrorCode,
  ULONG NumberOfErrorValues,
  ULONG ...
);

Parameters

  • NdisAdapterHandle
    [in] 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
    [in] Specifies the NDIS_STATUS_XXX code describing the I/O error.
  • NumberOfErrorValues
    [in] Specifies the number of ULONG values to follow this parameter.
  • ...
    [in] Specifies a variable-sized array of ULONGs associated with the error to be logged.

Return Value

None.

Remarks

Windows Embedded CE does not have error-logging facilities. This function does nothing and exists only to enable existing code to compile without errors.

Requirements

Header ndis.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NDIS Library Functions