Share via


NDIS_INIT_FUNCTION (Windows Embedded CE 6.0)

1/6/2010

NDIS_INIT_FUNCTION is a macro used to mark a driver function. It is run once only during initialization, but is otherwise ignored in Windows Embedded CE.

Syntax

VOID NDIS_INIT_FUNCTION(
  LPTSTR _F
);

Parameters

  • _F
    Ignored.

Return Value

None.

Remarks

This macro generates a compile time message but is otherwise ignored in Windows Embedded CE.

The NDIS_INIT_FUNCTION macro is defined as follows.

#define NDIS_INIT_FUNCTION(_F)  message("NDIS_INIT_FUNCTION Ignored")

Requirements

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

See Also

Reference

Network Driver Macros
DriverEntry