GetExtensionVersion

The GetExtensionVersion function is the first entry-point function IIS. This function allows your ISAPI extension to register its version information with IIS.

BOOL WINAPI GetExtensionVersion(

  HSE_VERSION_INFO* pVer 

);

 

Parameters
pVer
Points to an HSE_VERSION_INFO data structure that your extension has populated with your extension's version information.
Return Values

GetExtensionVersion must return TRUE for IIS to be able to use your ISAPI DLL. If this function returns FALSE, IIS will not use the extension.

Remarks

IIS calls this function when the DLL is initially loaded, and the call is made in the system’s security context.

See Also

Extension Version Information