X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/b4e3fab85fcd9f5b1502ec991c81302b910492d3..0f3b947bda5f34662a611272b9f12199e0da9aca:/fatfs/doc/ja/sdir.html diff --git a/fatfs/doc/ja/sdir.html b/fatfs/doc/ja/sdir.html deleted file mode 100644 index 0ac0b0e..0000000 --- a/fatfs/doc/ja/sdir.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - -FatFs - DIR - - - - -
-

DIR

-

DIR構造体は、f_opendir/f_readdir/f_findfirst/f_findnext関数のワーク エリアとして使用されます。アプリケーションは、この構造体のメンバを書き換えてはなりません。

-
-typedef struct {
-    _FDID   obj;       /* オブジェクトID */
-    DOWRD   dptr;      /* 現在のread/writeオフセット */
-    DWORD   clust;     /* 現在のクラスタ番号 */
-    DWORD   sect;      /* 現在のセクタ番号 */
-    BYTE*   dir;       /* 現在のSFNエントリ(Win[]内)へのポインタ */
-    BYTE*   fn;        /* SFNバッファへのポインタ (in/out) {file[8],ext[3],status[1]} */
-#if _USE_LFN
-    DWORD   blk_ofs;   /* 現在のエントリブロックの先頭 (0xFFFFFFFF:無効) */
-    WCHAR*  lfn;       /* LFNバッファへのポインタ (in/out) */
-#endif
-#if _USE_FIND
-    const TCHAR*  pat; /* マッチング パターンへのポインタ */
-#endif
-} DIR;
-
-
- -

戻る

- -