Upload files to "/"
This commit is contained in:
129
general.htm
Normal file
129
general.htm
Normal file
@@ -0,0 +1,129 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type"
|
||||
content="text/html; charset=iso-8859-1">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
|
||||
<title>General OPX Routines</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td width="400" height="40"> </td>
|
||||
<td width="30" height="40"><a
|
||||
href="../../../epoc32/doc/group/sdk.html"><img
|
||||
src="../../../epoc32/doc/group/library.gif"
|
||||
alt="SDK Home" align="top" border="0" width="30"
|
||||
height="30"></a></td>
|
||||
<td width="30" height="40"><a
|
||||
href="../../../epoc32/doc/glossary/glossary.html"><img
|
||||
src="../../../epoc32/doc/group/glossary.gif"
|
||||
alt="Glossary" align="top" border="0" width="30"
|
||||
height="30"></a></td>
|
||||
<td width="30" height="40"><a
|
||||
href="../../../epoc32/doc/index/id-toc.html"><img
|
||||
src="../../../epoc32/doc/group/index.gif" alt="Index"
|
||||
align="top" border="0" width="30" height="30"></a></td>
|
||||
<td width="30" height="40"><a href="programm.htm"><b><img
|
||||
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
|
||||
align="top" border="0" width="30" height="30"></b></a></td>
|
||||
<td width="30" height="40"><a href="comm.htm"><b><img
|
||||
src="../../../epoc32/doc/group/stoneright.gif"
|
||||
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
|
||||
<td width="30" height="40"><a href="programm.htm"><b><img
|
||||
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
|
||||
align="top" border="0" width="30" height="30"></b></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<hr>
|
||||
|
||||
<h1>General OPX Routines</h1>
|
||||
|
||||
<hr>
|
||||
|
||||
<p><em>Section contents</em></p>
|
||||
|
||||
<ul>
|
||||
<li><a href="#Overview"><strong>Overview</strong></a></li>
|
||||
<li><a href="#General"><strong>General</strong></a><ul>
|
||||
<li><a href="#DescriptorOPXVersion"><strong>CommsOPXVersion</strong></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
|
||||
<h2><a name="Overview">Overview</a></h2>
|
||||
|
||||
<h5>Defined in</h5>
|
||||
|
||||
<p><code>ccomms.oxh</code></p>
|
||||
|
||||
<hr>
|
||||
|
||||
<h3><a name="CommsOPXVersion">CommsOPXVersion</a></h3>
|
||||
|
||||
<h5>Usage</h5>
|
||||
|
||||
<p><code>result% = CommsOPXVersion%:()</code></p>
|
||||
|
||||
<h5>Description</h5>
|
||||
|
||||
<p>This routine returns the version number of the CComms OPX.</p>
|
||||
|
||||
<h5>Return Value</h5>
|
||||
|
||||
<table border="1">
|
||||
<tr>
|
||||
<td><code>result%</code></td>
|
||||
<td>The version number of the OPX.<br>
|
||||
The major version number can be obtained by dividing the
|
||||
value by 256.<br>
|
||||
The minor version number can be obtained by ANDing the
|
||||
value with 255.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h5>Example</h5>
|
||||
|
||||
<pre>LOCAL version%
|
||||
|
||||
<strong>version% = CommsOPXVersion%:</strong>
|
||||
PRINT "Major version number is "; version% / 256
|
||||
PRINT "Minor version number is "; version% AND 255</pre>
|
||||
|
||||
<hr>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td width="400" height="40"> </td>
|
||||
<td width="30" height="40"><a
|
||||
href="../../../epoc32/doc/group/sdk.html"><img
|
||||
src="../../../epoc32/doc/group/library.gif"
|
||||
alt="SDK Home" align="top" border="0" width="30"
|
||||
height="30"></a></td>
|
||||
<td width="30" height="40"><a
|
||||
href="../../../epoc32/doc/glossary/glossary.html"><img
|
||||
src="../../../epoc32/doc/group/glossary.gif"
|
||||
alt="Glossary" align="top" border="0" width="30"
|
||||
height="30"></a></td>
|
||||
<td width="30" height="40"><a
|
||||
href="../../../epoc32/doc/index/id-toc.html"><img
|
||||
src="../../../epoc32/doc/group/index.gif" alt="Index"
|
||||
align="top" border="0" width="30" height="30"></a></td>
|
||||
<td width="30" height="40"><a href="programm.htm"><b><img
|
||||
src="../../../epoc32/doc/group/stoneleft.gif" alt="Left"
|
||||
align="top" border="0" width="30" height="30"></b></a></td>
|
||||
<td width="30" height="40"><a href="comm.htm"><b><img
|
||||
src="../../../epoc32/doc/group/stoneright.gif"
|
||||
alt="Right" align="top" border="0" width="30" height="30"></b></a></td>
|
||||
<td width="30" height="40"><a href="programm.htm"><b><img
|
||||
src="../../../epoc32/doc/group/stoneup.gif" alt="Up"
|
||||
align="top" border="0" width="30" height="30"></b></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user