NLedDriverInitialize

This function initializes the notification LED.

BOOL NLedDriverInitialize (void);

Parameters

None.

Return Values

TRUE indicates success. FALSE indicates failure.

Remarks

Even if no explicit initialization is required for the notification LED, you must provide a stub function.

Platforms without LEDs can simply return TRUE.

The following code example shows an implementation of NledDriverInitialize.

BOOL WINAPI
NLedDriverInitialize( VOID )
{
  return (TRUE);
}

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Led_drvr.h.
Link Library: Nleddrv.lib.

See Also

Notification LED Drivers

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.