DIR構造体は、ディレクトリ情報読み出しのワークエリアとして使用されます。
typedef struct _DIR {
DWORD sclust; // Directory start cluster
DWORD clust; // Current reading cluster
DWORD sect; // Current reading sector
WORD index; // Current index
} DIR;
typedef struct _DIR {
WORD sclust; // Directory start cluster
WORD clust; // Current reading cluster
DWORD sect; // Current reading sector
WORD index; // Current index
} DIR;