GetExtensionVersion (Compact 2013)

3/26/2014

This function is an application-defined function. This function is called by the Web Server when the ISAPI extension is first loaded. The ISAPI extension exports this function to register its version information with the Web Server. The GetExtensionVersion name for this function is a placeholder for the function name defined by the header.

Syntax

BOOL WINAPI GetExtensionVersion(
  HSE_VERSION_INFO* pVer 
);

Parameters

  • pVer
    [out] Pointer to an HSE_VERSION_INFO structure populated with the extension's version information.

Return Value

Returns TRUE if the function succeeds, and FALSE otherwise. This function must return TRUE for the ISAPI extension to remain loaded.

Remarks

The Web Server calls this function when the DLL is initially loaded.

Requirements

Header

httpext.h

Library

Developer Implemented

See Also

Reference

Web Server Functions
HSE_VERSION_INFO