Unit 'Unix' Package
[Overview][Constants][Types][Procedures and functions][Index] [#rtl]

GetDomainName (deprecated)

Return current domain name.

Declaration

Source position: unix.pp line 144

function GetDomainName: string;

Description

Get the domain name of the machine on which the process is running. An empty string is returned if the domain is not set.

Errors

None.

See also

GetHostName

  

Return host name.

Example

Program Example39;

{ Program to demonstrate the GetDomainName function. }

Uses Unix;

begin
  Writeln ('Domain name of this machine is : ',GetDomainName);
end.

Documentation generated on: Jul 24 2023