1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
4<META http-equiv="Content-Type" content="text/html; charset=windows-1252">
5<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 8.0.0.0 for Windows">
6<META http-equiv="Content-Style-Type" content="text/css">
7<title>WMDataSet</title>
8<LINK rel="stylesheet" href="../../css/nitro.css" type="text/css">
9</head>
10<body>
11<h1 align="left">WMDataSet</h1>
12<h2>Definition</h2>
13<dl>
14  <dd>
15<CODE>#include &lt;nitro/wm.h&gt;</CODE><BR>
16  <PRE><CODE>
17typedef struct WMDataSet
18{
19    u16 aidBitmap;
20    u16 receivedBitmap;
21    u16 data[WM_DS_DATA_SIZE/sizeof(u16)];
22} WMDataSet;
23</CODE></PRE>
24  </dd>
25</dl><h2>Elements</h2>
26<TABLE border="1" width="100%">
27  <TBODY>
28    <TR>
29      <TD width="200"><CODE>aidBitmap</CODE></TD>
30      <TD width="800">AID bitmap of device performing data sharing.
31      Determines the data structure of <code>data</code>.
32      </TD>
33    </TR>
34    <TR>
35      <TD width="200"><CODE>receivedBitmap</CODE></TD>
36      <TD width="800">Bitmap of AID with valid data in <code>data</code>.
37      For unconnected children, the bit is 0.
38      </TD>
39    </TR>
40    <TR>
41      <TD width="200"><CODE>data</CODE></TD>
42      <TD width="800">Shared data array.
43      The shared data of <CODE>aidBitmap</CODE>-enabled device is packed in order from low AID of each shared size.
44      The shared size is not held in <code>WMDataSet</code>, so you need to get it separately when dividing.
45      </TD>
46    </TR>
47  </TBODY>
48</TABLE>
49<H2>Description</H2>
50<P>
51The structure showing the shared data obtained with the data sharing function of WM. In general, access this structure with the <A href="WM_GetSharedDataAddress.html"><code>WM_GetSharedDataAddress</code></A> function.
52</P>
53<H2>Revision History</H2>
54<P>
552004/09/21 Initial version.
56</P>
57<hr><p>CONFIDENTIAL</p></body>
58</html>