<div class="content"><p> </p><p>The <b>USE_ENUM_STRUCT</b> structure is used by the <b>NetrUseEnum</b>
method (section <span><a href="07122d93-f5ab-4502-bab3-946b65de7952" data-linktype="relative-path">3.2.4.10</a></span>) to
encapsulate the _USE_ENUM_UNION union.</p><dl>
<dd>
<div><pre> typedef struct _USE_ENUM_STRUCT {
   DWORD Level;
   [switch_is(Level)] union _USE_ENUM_UNION {
     [case(0)] 
       LPUSE_INFO_0_CONTAINER Level0;
     [case(1)] 
       LPUSE_INFO_1_CONTAINER Level1;
     [case(2)] 
       LPUSE_INFO_2_CONTAINER Level2;
     [default];
   } UseInfo;
 } USE_ENUM_STRUCT,
  *PUSE_ENUM_STRUCT,
  *LPUSE_ENUM_STRUCT;
</pre></div>
</dd></dl><p><b>Level:</b> A value that specifies the information
level of the data. This parameter MUST be one of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>
  <p>0x00000000</p>
  </td>
  <td>
  <p>The <b>UseInfo</b> buffer is a <b>USE_INFO_0</b>
  structure (section <span><a href="c6253242-d630-40ba-bded-f69695357ef3" data-linktype="relative-path">2.2.5.22</a></span>).</p>
  </td>
 </tr><tr>
  <td>
  <p>0x00000001</p>
  </td>
  <td>
  <p>The <b>UseInfo</b> buffer is a <b>USE_INFO_1</b>
  structure (section <span><a href="969d330b-fffa-4c4f-8331-62b3989086ff" data-linktype="relative-path">2.2.5.23</a></span>).</p>
  </td>
 </tr><tr>
  <td>
  <p>0x00000002</p>
  </td>
  <td>
  <p>The <b>UseInfo</b> buffer is a <b>USE_INFO_2</b>
  structure (section <span><a href="144e75a6-cda2-4418-96b9-e6867b50bfba" data-linktype="relative-path">2.2.5.24</a></span>).</p>
  </td>
 </tr></tbody></table>
</dd></dl><p><b>UseInfo:</b> A buffer containing any one of the <b>USE_INFO_0</b>,
<b>USE_INFO_1</b>, or <b>USE_INFO_2</b> structures.</p></div>