<div class="content" name="FAX_VERSION" uuid="7ef8f9ec-366f-4414-9583-4d8962c00e87"><p>The <b>FAX_VERSION</b> structure contains information about
the version of the fax server components. This structure is used by <b>FAX_GetVersion</b>
(section <a href="0b626f99-6d34-4fb6-9f13-fbd4d15528a9" data-linktype="relative-path">3.1.4.1.64</a>).</p><dl>
<dd>
<div><pre> typedef struct {
   DWORD dwSizeOfStruct;
   BOOL bValid;
   WORD wMajorVersion;
   WORD wMinorVersion;
   WORD wMajorBuildNumber;
   WORD wMinorBuildNumber;
   DWORD dwFlags;
 } FAX_VERSION,
  *PFAX_VERSION;
</pre></div>
</dd></dl><p><b>dwSizeOfStruct:</b> A <b>DWORD</b> (<a href="../ms-dtyp/cca27429-5689-4a16-b2b4-9325d93e4ba2" data-linktype="relative-path">[MS-DTYP]</a>
section <a href="../ms-dtyp/262627d8-3418-4627-9218-4ffe110850b2" data-linktype="relative-path">2.2.9</a>)
value that holds the total size of the structure, in bytes. This value MUST be
20 bytes.</p><p><b>bValid:</b> A Boolean value indicating the
validity of the version information returned.</p><dl>
<dd>
<p><b>Note</b>  This value MUST
be set to false if no version information is returned in this structure.</p>
</dd></dl><p><b>wMajorVersion:</b> A <b>WORD</b> containing the
major version number of the fax server component.</p><p><b>wMinorVersion:</b> A <b>WORD</b> containing the
minor version number of the fax server component.</p><p><b>wMajorBuildNumber:</b> A <b>WORD</b> containing
the major build number of the fax server component.</p><p><b>wMinorBuildNumber:</b> A <b>WORD</b> containing
the minor build number of the fax server component.</p><p><b>dwFlags:</b> A <b>DWORD</b> that MUST contain one
of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value/code</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>0x00000000</td>
  <td>Indicates that the server component was built in release mode. Note  If built in release mode, this value MUST be zero, which is the default.</td>
 </tr><tr>
  <td>FAX_VER_FLAG_CHECKED 0x00000001</td>
  <td>Indicates that the server component was built in debug mode.</td>
 </tr><tr>
  <td>FAX_VER_FLAG_EVALUATION 0x00000002</td>
  <td>Indicates that the server component was built for evaluation purposes. Reserved for future use.</td>
 </tr></tbody></table>
</dd></dl><p> </p></div>