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=windows-1252"> 6<META http-equiv="Content-Style-Type" content="text/css"> 7 8<LINK rel="stylesheet" type="text/css" href="../CSS/revolution.css"> 9 10<!-- �^�C�g���� --> 11<TITLE>SCInit</TITLE> 12 13</HEAD> 14 15<BODY> 16 17 18<!-- �^�C�g���� --> 19<H1>SCInit</H1> 20 21 22 23<H2>C Specification</H2> 24<pre><code>#include <revolution/sc.h> 25 26void SCInit(void); 27</code></pre> 28 29 30<H2>Arguments</H2> 31<P>None.</P> 32 33<H2>Return Values</H2> 34<P>None.</P> 35 36<H2>Description</H2> 37<P>Initializes the SC library. Call this function once before using the library. This function can be called any number of times.</P> 38 39<p> 40This function starts the initialization process in the background. This allows applications to efficiently carry out other initialization processes while console settings saved in internal flash memory are being loaded into RAM. 41</p> 42 43<p> 44For this reason, initialization is not complete when control returns from this function. Be sure to call <a href="SCCheckStatus.html"><code>SCCheckStatus()</code></a> repeatedly to confirm that the return value is <code>SC_STATUS_OK</code>. No matter how much time has elapsed since <code>SCInit()</code> was called, <a href="SCCheckStatus.html"><code>SCCheckStatus()</code></a> must be called once to complete the initialization process. 45</p> 46 47<p> 48Other SC library functions cannot be called until initialization is complete. 49</p> 50 51<p> 52This function automatically calls <a href="../nand/NANDInit.html"><code>NANDInit()</code></a>. 53</p> 54 55<H2>See Also</H2> 56<p> 57<a href="SCCheckStatus.html"><code>SCCheckStatus</code></a><br> <a href="../nand/NANDInit.html"><code>NANDInit</code></a><br> 58</p> 59 60<H2>Revision History</H2> 61<P>05/29/2006 Initial version.</P> 62 63</BODY> 64</HTML> 65