<div class="content"><p> </p><p>The <b>RPC_FAX_OUTBOUND_ROUTING_GROUPW</b> data type is used
as an input argument for <b>FAX_SetOutboundGroup</b> (section <span><a href="c72ba43e-75c3-4171-bb7a-70e8161b10c4" data-linktype="relative-path">3.1.4.1.85</a></span>).
The group name contained by this structure describes one <b>Routing Group</b>
(section <span><a href="bd422bcf-7ce8-4576-addb-89345ea84f9f" data-linktype="relative-path">3.1.1</a></span>).</p><p>For reference, the data type definition is shown as follows.</p><dl>
<dd>
<div><pre> typedef struct {
   DWORD dwSizeOfStruct;
   [string] LPWSTR lpwstrGroupName;
   [range(0,FAX_MAX_DEVICES_IN_GROUP)] 
     DWORD dwNumDevices;
   [unique, size_is(dwNumDevices)] 
     LPDWORD lpdwDevices;
   FAX_ENUM_GROUP_STATUS Status;
 } RPC_FAX_OUTBOUND_ROUTING_GROUPW,
  *PRPC_FAX_OUTBOUND_ROUTING_GROUPW;
</pre></div>
</dd></dl><p><b>dwSizeOfStruct:</b> A <b>DWORD</b> (<span><a href="../ms-dtyp/cca27429-5689-4a16-b2b4-9325d93e4ba2" data-linktype="relative-path">[MS-DTYP]</a></span>
section <span><a href="../ms-dtyp/262627d8-3418-4627-9218-4ffe110850b2" data-linktype="relative-path">2.2.9</a></span>)
value that holds the total size of the structure, in bytes. This value MUST be
20 or 40 bytes. When filled in on a 32-bit implementation, this value SHOULD be
20 bytes. When filled in on a 64-bit implementation, this value SHOULD be 40
bytes.</p><p><b>lpwstrGroupName:</b> A null-terminated character
string containing the group name. The length of this string MUST be between 1
and 128 characters, excluding the length of the terminating null character. The
group name is case-insensitive.</p><p><b>dwNumDevices:</b> A <b>DWORD</b> value that holds
the number of devices in the group. The value MUST be in the range between 0
and 1,000. The <i>dwNumDevices</i> parameter also indicates the length of the <i>lpdwDevices</i>
array, which is not larger than the actual number of devices.</p><p><b>lpdwDevices:</b> A pointer to a <b>DWORD</b> array
which contains <b>dwNumDevices</b> entries. Each <b>DWORD</b> value specifies
one device identifier in the group. A device MUST only appear once in a group&#39;s
device list. A single device can belong to one or more groups. Groups are not
set to store invalid devices. The order of the devices in the array determines
the order the devices are to be used to send faxes, when the group is selected.</p><p><b>Status:</b> Current status of the group from the
enumeration <b>FAX_ENUM_GROUP_STATUS</b> (section <span><a href="10687453-1be7-422b-9d69-220789cd5117" data-linktype="relative-path">2.2.59</a></span>).</p></div>