~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/base/libc/bdirenth.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

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