]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - fatfs/doc/en/sdir.html
Import fatfs R0.13b
[z180-stamp.git] / fatfs / doc / en / sdir.html
diff --git a/fatfs/doc/en/sdir.html b/fatfs/doc/en/sdir.html
deleted file mode 100644 (file)
index 7eba555..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-<!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-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/sdir.html">\r
-<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">\r
-<title>FatFs - DIR</title>\r
-</head>\r
-\r
-<body>\r
-\r
-<div class="para">\r
-<h2>DIR</h2>\r
-<p>The <tt>DIR</tt> structure is used for the work area to read a directory by <tt>f_oepndir()/f_readdir()</tt> function. Application program must not modify any member in this structure.</p>\r
-<pre>\r
-<span class="k">typedef</span> <span class="k">struct</span> {\r
-    FATFS*  fs;         <span class="c">/* Pointer to the owner file system object */</span>\r
-    WORD    id;         <span class="c">/* Owner file system mount ID */</span>\r
-    WORD    index;      <span class="c">/* Index of directory entry to start to search next */</span>\r
-    DWORD   sclust;     <span class="c">/* Table start cluster (0:Root directory) */</span>\r
-    DWORD   clust;      <span class="c">/* Current cluster */</span>\r
-    DWORD   sect;       <span class="c">/* Current sector */</span>\r
-    BYTE*   dir;        <span class="c">/* Pointer to the current SFN entry in the win[] */</span>\r
-    BYTE*   fn;         <span class="c">/* Pointer to the SFN buffer (in/out) {file[8],ext[3],status[1]} */</span>\r
-<span class="k">#if</span> _FS_LOCK\r
-    UINT    lockid;     <span class="c">/* Sub-directory lock ID (0:Root directory) */</span>\r
-<span class="k">#endif</span>\r
-<span class="k">#if</span> _USE_LFN\r
-    WCHAR*  lfn;        <span class="c">/* Pointer to the LFN buffer (in/out) */</span>\r
-    WORD    lfn_idx;    <span class="c">/* Index of the LFN entris (0xFFFF:No LFN) */</span>\r
-<span class="k">#endif</span>\r
-} DIR;\r
-</pre>\r
-</div>\r
-\r
-<p class="foot"><a href="../00index_e.html">Return</a></p>\r
-</body>\r
-</html>\r