From 289f6a146c0b2087607d8d8659531ea90142779a Mon Sep 17 00:00:00 2001 From: Leo C Date: Sun, 27 May 2018 21:26:38 +0200 Subject: Import fatfs R0.13b --- fatfs/doc/en/sdir.html | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 fatfs/doc/en/sdir.html (limited to 'fatfs/doc/en/sdir.html') diff --git a/fatfs/doc/en/sdir.html b/fatfs/doc/en/sdir.html deleted file mode 100644 index a01a716..0000000 --- a/fatfs/doc/en/sdir.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - -FatFs - DIR - - - - -
-

DIR

-

The DIR structure is used for the work area to read a directory by f_oepndir, f_readdir, f_findfirst and f_findnext function. Application program must not modify any member in this structure, or any data on the FAT volume can be collapsed.

-
-typedef struct {
-    _FDID   obj;        /* Owner file sytem object and object identifier */
-    DWORD   dptr;       /* Current read/write offset */
-    DWORD   clust;      /* Current cluster */
-    DWORD   sect;       /* Current sector */
-    BYTE*   dir;        /* Pointer to the current SFN entry in the win[] */
-    BYTE*   fn;         /* Pointer to the SFN buffer (in/out) {file[8],ext[3],status[1]} */
-#if _USE_LFN
-    DWORD   blk_ofs;    /* Offset of the entry block (0xFFFFFFFF:Invalid) */
-    WCHAR*  lfn;        /* Pointer to the LFN working buffer (in/out) */
-#endif
-#if _USE_FIND
-    const TCHAR*  pat;  /* Ponter to the matching pattern */
-#endif
-} DIR;
-
-
- -

Return

- - -- cgit v1.2.3