1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<html>
<head>
<title>EAGLE Help: Data Types</title>
</head>
<body bgcolor=white>
<font face=Helvetica,Arial>
<hr>
<i>EAGLE Help</i>
<h1><center>Data Types</center></h1>
<hr>
A User Language Program can define variables of different types, representing
the different kinds of information available in the EAGLE data structures.
<p>
The four basic data types are
<p>
<table>
<tr><td valign=top><font face=Helvetica,Arial><tt><a href=155.htm>char</a></tt> </font></td><td valign=top><font face=Helvetica,Arial>for single characters</font></td></tr>
<tr><td valign=top><font face=Helvetica,Arial><tt><a href=156.htm>int</a></tt> </font></td><td valign=top><font face=Helvetica,Arial>for integral values</font></td></tr>
<tr><td valign=top><font face=Helvetica,Arial><tt><a href=157.htm>real</a></tt> </font></td><td valign=top><font face=Helvetica,Arial>for floating point values</font></td></tr>
<tr><td valign=top><font face=Helvetica,Arial><tt><a href=158.htm>string</a></tt> </font></td><td valign=top><font face=Helvetica,Arial>for textual information</font></td></tr>
</table>
<p>
Besides these basic data types there are also high level
<a href=161.htm>Object Types</a>, which
represent the data structures stored in the EAGLE data files.
<p>
The special data type <tt>void</tt> is used only as a return type of a
<a href=200.htm>function</a>, indicating that this
function does <b>not</b> return any value.
<hr>
<table width=100% cellspacing=0 border=0><tr><td align=left><font face=Helvetica,Arial>
<a href=index.htm>Index</a>
</font></td><td align=right><font face=Helvetica,Arial size=-1>
<i>Copyright © 2005 CadSoft Computer GmbH</i>
</font></td></tr></table>
<hr>
</font>
</body>
</html>
|