Share via


NdisInitializeTimer (Windows CE 5.0)

Send Feedback

This function initializes a timer object associated with a driver's timer function.

VOID NdisInitializeTimer(PNDIS_TIMERTimer,PNDIS_TIMER_FUNCTIONTimerFunction,PVOIDFunctionContext);

Parameters

  • Timer
    [in] Points to caller-supplied, resident storage that receives a timer object.
  • TimerFunction
    [in] Specifies the entry point of a caller-supplied timer function that is called when the timer expires.
  • FunctionContext
    [in] Points to a caller-supplied context to be passed to the specified timer function when it is called.

Return Values

None.

Remarks

A protocol driver might request that NDIS provide timing services. To request timing services, this protocol driver calls NdisInitializeTimer to set up the driver's timer function. Typically, NdisInitializeTimer is called when a driver initializes. The protocol driver must call NdisInitializeTimer with a caller-supplied pointer to store a timer object, thereby associating a driver-supplied timer function with the timer object. The protocol driver must call NdisInitializeTimer before the driver passes the Timer pointer to any other NdisXXXTimer function.

Calls to the NdisSetTimer function insert the timer object in the system timer queue. Calls to NdisCancelTimer dequeue the timer object if it is currently queued. Only one instance of a particular timer object can be queued at any given moment.

After a driver calls NdisSetTimer, the timer object at Timer is queued until the interval specified in the call expires.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.
Link Library: Ndis.lib

See Also

NdisCancelTimer | NdisSetTimer

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.