Share via


HcdPdd_DllMain (Windows Embedded CE 6.0)

1/6/2010

This function is the main dynamic-link library (DLL) entry point for the platform dependent driver (PDD) portion of a host controller interface (HCI) driver.

Syntax

BOOL HcdPdd_DllMain(
  HANDLE hinstDLL,
  DWORD dwReason,
  LPVOID lpvReserved 
);

Parameters

  • hinstDLL
    [in] Handle to a DLL instance.
  • dwReason
    [in] Reason code.
  • lpvReserved
    [in] Pointer to a system parameter.

Return Value

TRUE indicates success. FALSE indicates failure.

Remarks

This function enables the PDD to perform necessary processing at DLL entry time. Generally, this function does little because the HcdPdd_Init function performs most initialization.

Requirements

Header Hcdddsi.h or Ohcdddsi.h
Windows Embedded CE Windows CE 1.0 and later

See Also

Reference

USB Host Controller Driver PDD Functions
HcdPdd_Init