X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/b4e3fab85fcd9f5b1502ec991c81302b910492d3:/fatfs/doc/en/sdir.html..0f3b947bda5f34662a611272b9f12199e0da9aca:/fatfs/documents/doc/sdir.html diff --git a/fatfs/doc/en/sdir.html b/fatfs/documents/doc/sdir.html similarity index 80% rename from fatfs/doc/en/sdir.html rename to fatfs/documents/doc/sdir.html index a01a716..53a460d 100644 --- a/fatfs/doc/en/sdir.html +++ b/fatfs/documents/doc/sdir.html @@ -1,7 +1,7 @@ - + @@ -13,20 +13,20 @@

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.

+

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 f_readdir function will not work properly.

 typedef struct {
-    _FDID   obj;        /* Owner file sytem object and object identifier */
+    FFOBJID obj;        /* 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
+#if FF_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
+#if FF_USE_FIND
     const TCHAR*  pat;  /* Ponter to the matching pattern */
 #endif
 } DIR;