summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/libc/src/bnetdbh.inc
blob: b445a89e81ffcaeb91db4211c6d80f5cec34ca75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

type
   Pnetent = ^netent;
   netent = record
        n_name : Pchar;
        n_aliases : ^Pchar;
        n_addrtype : longint;
        n_net : uint32_t;
     end;
   PPNetEnt = ^Pnetent;


{ ---------------------------------------------------------------------
    Borland compatibility types
  ---------------------------------------------------------------------}

Type
  TNetEnt = netent;