bdirenth.inc 764 B

12345678910111213141516171819202122232425262728293031323334353637
  1. type
  2. Pdirent = ^dirent;
  3. dirent = record
  4. d_ino : __ino_t;
  5. d_off : __off_t;
  6. d_reclen : word;
  7. d_type : byte;
  8. d_name : array[0..255] of char;
  9. end;
  10. type
  11. Pdirent64 = ^dirent64;
  12. dirent64 = record
  13. d_ino : __ino64_t;
  14. d_off : __off64_t;
  15. d_reclen : word;
  16. d_type : byte;
  17. d_name : array[0..255] of char;
  18. end;
  19. { ---------------------------------------------------------------------
  20. Borland compatibility types
  21. ---------------------------------------------------------------------}
  22. Type
  23. TDirEnt = dirent;
  24. PPDirEnt = ^PDirEnt;
  25. PPPDirEnt = ^PPDirEnt;
  26. TDirEnt64 = dirent64;
  27. PPDirEnt64 = ^PDirEnt64;
  28. PPPDirEnt64 = ^PPDirEnt64;