Share via


HcdPdd_DllMain (Compact 2013)

3/26/2014

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

See Also

Reference

USB Host Controller Driver PDD Functions
HcdPdd_Init