blob: e1787b04aeb5ed20ee7f97e7bf45e6d03e5e2e68 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>oscl_aostatus.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.2.18 -->
<center>
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="modules.html">Modules</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="annotated.html">Data Structures</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Data Fields</a> &nbsp; <a class="qindex" href="globals.html">Globals</a> &nbsp; </center>
<hr><h1>oscl_aostatus.h</h1><a href="oscl__aostatus_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001
00010 <span class="preprocessor">#ifndef OSCL_AOSTATUS_H_INCLUDED</span>
00011 <span class="preprocessor"></span><span class="preprocessor">#define OSCL_AOSTATUS_H_INCLUDED</span>
00012 <span class="preprocessor"></span>
00013 <span class="preprocessor">#ifndef OSCLCONFIG_PROC_H_INCLUDED</span>
00014 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="osclconfig__proc_8h.html">osclconfig_proc.h</a>"</span>
00015 <span class="preprocessor">#endif</span>
00016 <span class="preprocessor"></span>
00017
00018 <span class="preprocessor">#ifndef OSCL_BASE_H_INCLUDED</span>
00019 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__base_8h.html">oscl_base.h</a>"</span>
00020 <span class="preprocessor">#endif</span>
00021 <span class="preprocessor"></span>
00022 <span class="comment">//Request status values. These are negative so that</span>
00023 <span class="comment">//they won't conflict with system error codes.</span>
<a name="l00024"></a><a class="code" href="group__osclproc.html#a0">00024</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a0">OSCL_REQUEST_ERR_NONE</a> = 0;
<a name="l00025"></a><a class="code" href="group__osclproc.html#a1">00025</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a1">OSCL_REQUEST_PENDING</a> = (-0x7fffffff);
<a name="l00026"></a><a class="code" href="group__osclproc.html#a2">00026</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a2">OSCL_REQUEST_ERR_CANCEL</a> = (-1);
<a name="l00027"></a><a class="code" href="group__osclproc.html#a3">00027</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a3">OSCL_REQUEST_ERR_GENERAL</a> = (-2);
00028
00029
00030 <span class="comment">//Request status type</span>
<a name="l00031"></a><a class="code" href="classOsclAOStatus.html">00031</a> <span class="keyword">class </span><a class="code" href="classOsclAOStatus.html">OsclAOStatus</a>
00032 {
00033 <span class="keyword">public</span>:
00034 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> <a class="code" href="classOsclAOStatus.html#a0">OsclAOStatus</a>();
00035 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> <a class="code" href="classOsclAOStatus.html#a0">OsclAOStatus</a>(int32 aStatus);
00036 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a2">operator=</a>(int32 aStatus);
00037 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a3">operator==</a>(int32 aStatus) <span class="keyword">const</span>;
00038 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a4">operator!=</a>(int32 aStatus) <span class="keyword">const</span>;
00039 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a5">operator&gt;=</a>(int32 aStatus) <span class="keyword">const</span>;
00040 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a6">operator&lt;=</a>(int32 aStatus) <span class="keyword">const</span>;
00041 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a7">operator&gt;</a>(int32 aStatus) <span class="keyword">const</span>;
00042 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a8">operator&lt;</a>(int32 aStatus) <span class="keyword">const</span>;
00043 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a9">Value</a>() <span class="keyword">const</span>;
00044 <span class="keyword">private</span>:
00045 int32 iStatus;
00046 };
00047
00048
00049 <span class="preprocessor">#if !(OSCL_DISABLE_INLINES)</span>
00050 <span class="preprocessor"></span><span class="preprocessor">#include "oscl_aostatus.inl"</span>
00051 <span class="preprocessor">#endif</span>
00052 <span class="preprocessor"></span>
00053
00054 <span class="preprocessor">#endif</span>
00055 <span class="preprocessor"></span>
</pre></div><hr size="1"><img src="pvlogo_small.jpg"><address style="align: right;"><small>OSCL API</small>
<address style="align: left;"><small>Posting Version: OPENCORE_20090310 </small>
</small></address>
</body>
</html>