Function GetDomainName : String;
Get the domain name of the machine on which the process is running. An empty string is returned if the domain is not set.
None.
GetHostName,seemGetdomainname2
Program Example39; { Program to demonstrate the GetDomainName function. } Uses linux; begin Writeln ('Domain name of this machine is : ',GetDomainName); end.