mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-02 00:53:40 +02:00
19 lines
394 B
PHP
19 lines
394 B
PHP
|
|
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;
|