HTTPAPI_VERSION (Structures)
Last changed: 65.54.188.149

.
Summary
The HTTPAPI_VERSION structure defines the version of the HTTP API. This is not to be confused with the version of the HTTP protocol being used, which is stored in an HTTP_VERSION structure.

C# Definition:

[StructLayout(LayoutKind.Sequential, Pack = 2)]
internal struct HTTPAPI_VERSION
{
     internal ushort HttpApiMajorVersion;
     internal ushort HttpApiMinorVersion;

     internal HTTPAPI_VERSION(ushort majorVersion, ushort minorVersion)
     {
     HttpApiMajorVersion = majorVersion;
     HttpApiMinorVersion = minorVersion;
     }
}

VB Definition:

Structure HTTPAPI_VERSION
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation