Instruções

 

<$E> = Equates mark begin

<$F> = Function mark begin

<$S> = Structure mark begin

<$G> = group mark begin

<$GL> = Glossary mark begin

<$/> End mark. Every time he finds an equate, function, structure, group or glossary, he knows that the searching stops ahen he finds the first <$/> mark

 

<$P> = Paragraph Mark

<$T> = Tab Mark. The Tab mark is finished when he finds the next Paragraph Mark. <$P>

 

 

The Tables can be written as the same way as in Html tables, but more simpler. Like:

 

Point-of-view flags

Description

JOY_POVBACKWARD

Point-of-view hat is pressed backward. The value 18,000 represents an orientation of 180.00 degrees (to the rear).

JOY_POVCENTERED

Point-of-view hat is in the neutral position. The value -1 means the point-of-view hat has no angle to report.

JOY_POVFORWARD

Point-of-view hat is pressed forward. The value 0 represents an orientation of 0.00 degrees (straight ahead).

JOY_POVLEFT

Point-of-view hat is being pressed to the left. The value 27,000 represents an orientation of 270.00 degrees (90.00 degrees to the left).

JOY_POVRIGHT

Point-of-view hat is pressed to the right. The value 9,000 represents an orientation of 90.00 degrees (to the right).

 

<$TB> ; Beginning of the Table

Point-of-view flags <$TTB>Description<$PTB>

JOY_POVBACKWARD<$TTB>Point-of-view hat is pressed backward. The value 18,000 represents an orientation of 180.00 degrees (to the rear). <$PTB>

JOY_POVCENTERED<$TTB>Point-of-view hat is in the neutral position. The value -1 means the point-of-view hat has no angle to report. <$PTB>

JOY_POVFORWARD<$TTB>Point-of-view hat is pressed forward. The value 0 represents an orientation of 0.00 degrees (straight ahead). <$PTB>

JOY_POVLEFT<$TTB>Point-of-view hat is being pressed to the left. The value 27,000 represents an orientation of 270.00 degrees (90.00 degrees to the left). <$PTB>

JOY_POVRIGHT<$TTB>Point-of-view hat is pressed to the right. The value 9,000 represents an orientation of 90.00 degrees (to the right). <$PTB>

<$/TB> ; End table

 

 

That is:

 

<$TB> = Beginning of the table

 

<$TTB> Tab inside the table. Mean the row separator, like: <td></td> on html files. When find this mark he knows that it's related to a tabld inside this line.

<$PTB> Paragraph inside table. The end of the table row. When he find this he knows that it is the end of the row, and acts like an paragraph mark, but since it is in a table he will go for the next row.

<$/TB> end of the table

 

In html it is something like:

 

<table>

<tr>

<td>Point-of-view flags</td>

<td>Description</td>

</tr>

<tr>

<td>JOY_POVBACKWARD</td>

<td>Point-of-view hat is pressed backward. The value 18,000 represents an orientation of 180.00 degrees (to the rear).</td>

</tr>

<tr>

<td>JOY_POVCENTERED</td>

<td>The value -1 means the point-of-view hat has no angle to report.</td>

</tr>

<tr>

<td>JOY_POVFORWARD</td>

<td>Point-of-view hat is pressed forward. The value 0 represents an orientation of 0.00 degrees (straight ahead).</td>

</tr>

<tr>

<td>JOY_POVLEFT</td>

<td>Point-of-view hat is being pressed to the left. The value 27,000 represents an orientation of 270.00 degrees (90.00 degrees to the left).</td>

</tr>

<tr>

<td>JOY_POVRIGHT</td>

<td>Point-of-view hat is pressed to the right. The value 9,000 represents an orientation of 90.00 degrees (to the right).</td>

</tr>

</table>

 

 

Check the structure MIXERCONTROLDETAILS_BOOLEAN, too see more examples

 

Also see ACTION_HEADER.

 

When he finds

<$TB>

<$TTB>

 

means that the first roww is empty, displaying something like:

 

 

ncb_lsn = 0

ncb_lsn != 0

ncb_num = 0

Action applies to control channel associated with the valid LAN adapter.

Action applies to connection identifier associated with the valid local session number.

ncb_num != 0

Action applies to address associated with the valid LAN adapter.

Illegal combination.

 

That is:

 

<$TB><$TTB>ncb_lsn = 0<$TTB>ncb_lsn != 0<$PTB>ncb_num = 0<$TTB>Action applies to control channel associated with the valid LAN adapter. <$TTB>Action applies to connection identifier associated with the valid local session number. <$PTB>ncb_num != 0<$TTB>Action applies to address associated with the valid LAN adapter. <$TTB>Illegal combination. <$PTB><$/TB>