]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - fatfs/documents/doc/forward.html
Merge branch 'chan-fatfs' into fatfs-integration
[z180-stamp.git] / fatfs / documents / doc / forward.html
similarity index 91%
rename from fatfs/doc/en/forward.html
rename to fatfs/documents/doc/forward.html
index eddb051f88848c9e9638c58cff3d71188e14ff30..ada0a0539bcface3dff1bc51ab0c75918d7ee6dc 100644 (file)
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\r
 <html lang="en">\r
 <head>\r
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r
 <meta http-equiv="Content-Style-Type" content="text/css">\r
 <link rel="up" title="FatFs" href="../00index_e.html">\r
 <link rel="alternate" hreflang="ja" title="Japanese" href="../ja/forward.html">\r
@@ -46,6 +46,7 @@ FRESULT f_forward (
 <a href="rc.html#de">FR_DISK_ERR</a>,\r
 <a href="rc.html#ie">FR_INT_ERR</a>,\r
 <a href="rc.html#io">FR_INVALID_OBJECT</a>,\r
+<a href="rc.html#dn">FR_DENIED</a>,\r
 <a href="rc.html#tm">FR_TIMEOUT</a>\r
 </p>\r
 </div>\r
@@ -59,7 +60,7 @@ FRESULT f_forward (
 \r
 <div class="para comp">\r
 <h4>QuickInfo</h4>\r
-<p>Available when <tt>_USE_FORWARD == 1</tt>.</p>\r
+<p>Available when <tt><a href="config.html#use_forward">FF_USE_FORWARD</a> == 1</tt>.</p>\r
 </div>\r
 \r
 \r
@@ -114,10 +115,10 @@ FRESULT play_file (
     <span class="c">/* Repeat until the file pointer reaches end of the file */</span>\r
     while (rc == FR_OK &amp;&amp; !f_eof(&amp;fil)) {\r
 \r
-        <span class="c">/* any other processes... */</span>\r
+        <span class="c">/* some processes... */</span>\r
 \r
         <span class="c">/* Fill output stream periodicaly or on-demand */</span>\r
-        rc = f_forward(&amp;fil, out_stream, 1000, &amp;dmy);\r
+        rc = <em>f_forward</em>(&amp;fil, out_stream, 1000, &amp;dmy);\r
     }\r
 \r
     <span class="c">/* Close the file and return */</span>\r