1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<HTML> 3 4<HEAD> 5<META http-equiv="Content-Type" content="text/html; charset=utf-8"> 6<META http-equiv="Content-Style-Type" content="text/css"> 7 8<LINK rel="stylesheet" type="text/css" href="../CSS/revolution.css"> 9 10<!-- タイトル名 --> 11<TITLE>SCCheckStatus</TITLE> 12 13</HEAD> 14 15<BODY> 16 17 18<!-- タイトル名 --> 19<H1>SCCheckStatus</H1> 20 21 22 23<H2>Syntax</H2> 24<dl><dd><pre class="construction"> 25#include <revolution/sc.h> 26 27u32 SCCheckStatus(void); 28</pre></dd></dl> 29 30 31<H2>Arguments</H2> 32<P>None.</P> 33 34<H2>Return Values</H2> 35<P>One of the <code>SC_STATUS_*</code> values.</P> 36 37<H2>Description</H2> 38<p> 39This function checks the status of background processes while the SC library is executing or checks the result of the last background process that executed. 40</p> 41 42<p> 43The return value of this function is only useful after calling <a href="SCInit.html"><code>SCInit</code></a> or <code>SCFlush*</code>. 44</p> 45 46<TABLE class="arguments" border="1" > 47 <TBODY> 48 <TR> 49<TD width="30%" valign="middle" bgcolor="#C0C0C0">Return Values</TD> 50<TD width="*" valign="middle" bgcolor="#C0C0C0">State or result</TD> 51 </TR> 52 <TR> 53<TH>SC_STATUS_OK</TH> 54<TD>The last executed background process succeeded.<br>No background process is currently executing.<br></TD> 55 </TR> 56 <TR> 57<TH>SC_STATUS_BUSY</TH> 58<TD>A background process is currently executing.</TD> 59 </TR> 60 <TR> 61<TH>SC_STATUS_ERROR</TH> 62<TD>The last executed background process failed.<br>No background process is currently executing.<br></TD> 63 </TR> 64 </TBODY> 65</TABLE> 66 67<H2>See Also</H2> 68<p class="reference"> 69<a href="SCInit.html">SCInit</a><BR> <code>SCFlush*</code> 70</p> 71 72<H2>Revision History</H2> 73<P> 742009/07/13 Deleted link to <code>SCFlush*</code> because the functions are no longer public.<BR>2006/05/29 Initial version.<BR> 75</P> 76 77<hr><p>CONFIDENTIAL</p></body> 78</HTML> 79