sytem – -Translation – Keybot Dictionary

Spacer TTN Translation Network TTN TTN Login Deutsch Français Spacer Help
Source Languages Target Languages
Keybot 2 Results  elm-chan.org
  FatFs - FIL  
typedef struct { _FDID obj; /* Owner file sytem object and object identifier */ BYTE flag; /* File object status flags */ BYTE err; /* Abort flag (error code) */ FSIZE_t fptr; /* File read/write pointer (Byte offset origin from top of the file) */ DWORD clust; /* Current cluster of fptr (One cluster behind if fptr is on the cluster boundary. Invalid if fptr == 0.) */ DWORD sect; /* Current data sector (Can be invalid if fptr is on the cluster boundary.)*/ #if !
typedef struct { _FDID obj; /* オブジェクトID */ BYTE flag; /* ファイル ステータス フラグ */ BYTE err; /* エラー中断フラグ */ FSIZE_t fptr; /* ファイル読み書きポインタ (ファイル先頭からのバイト オフセット) */ DWORD clust; /* 現在のクラスタ (fptrがクラスタ境界上のときは前のクラスタ、fptrが0のときは無効) */ DWORD dsect; /* 現在のデータ セクタ */ #if !_FS_READONLY DWORD dir_sect; /* このファイルのディレクトリ エントリのあるセクタ */ BYTE* dir_ptr; /* このファイルのディレクトリへのポインタ */ #endif #if _USE_FASTSEEK DWORD* cltbl; /* ファイルのクラスタ リンク情報へのポインタ (オープン時にNULLがセットされる) */ #endif #if _FS_LOCK UINT lockid; /* ファイル ロックID */ #endif #if !_FS_TINY BYTE buf[_MAX_SS]; /* ファイル プライベート データ転送バッファ (fptrがセクタ境界上にない時は常に有効だが、fptrがセクタ境界上のときは無効な場合がある) */ #endif } FIL;
  FatFs - DIR  
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;
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;