OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [Common/] [FileSystem/] [FatFs-0.7e/] [doc/] [ja/] [sdir.html] - Blame information for rev 606

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 606 jeremybenn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
<html lang="ja">
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
5
<meta http-equiv="Content-Style-Type" content="text/css">
6
<link rel="up" title="FatFs" href="../00index_j.html">
7
<link rel="stylesheet" href="../css_j.css" type="text/css" media="screen" title="ELM Default">
8
<title>FatFs - DIR</title>
9
</head>
10
 
11
<body>
12
 
13
<div class="para">
14
<h2>DIR</h2>
15
<p><tt>DIR</tt>構造体は、f_opendir(), f_readdir()のワーク・エリアとして使用されます。アプリケーションから変更可能なメンバはありません。</p>
16
<pre>
17
typedef struct _DIR_ {
18
    FATFS*  fs;        /* Pointer to the owner file system object */
19
    WORD    id;        /* Owner file system mount ID */
20
    WORD    index;     /* Current index number */
21
    DWORD   sclust;    /* Table start cluster (0:Static table) */
22
    DWORD   clust;     /* Current cluster */
23
    DWORD   sect;      /* Current sector */
24
    BYTE*   dir;       /* Pointer to the current SFN entry in the win[] */
25
    BYTE*   fn;        /* Pointer to the SFN (in/out) {file[8],ext[3],status[1]} */
26
#if _USE_LFN
27
    WCHAR*  lfn;       /* Pointer to the LFN working buffer */
28
    WORD    lfn_idx;   /* Last matched LFN index (0xFFFF:No LFN) */
29
#endif
30
} DIR;
31
</pre>
32
</div>
33
 
34
<p class="foot"><a href="../00index_j.html">戻る</a></p>
35
</body>
36
</html>

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.