Another example is the HttpExtensionProc function prototype declared in the Microsoft header file httpext.h:
DWORD WINAPI HttpExtensionProc( __in EXTENSION_CONTROL_BLOCK *pECB );
The developer who implemented this function in his code wrote:
DWORD WINAPI HttpExtensionProc(__in LPEXTENSION_CONTROL_BLOCK pECB)
{ ... }
This is essentially the same, but VA cannot make the connection because it apparently only does a strict string comparison of types.