::wxGetFullHostName
::wxGetEmailAddress
::wxGetHostName
wxString wxGetFullHostName()
Returns the FQDN (fully qualified domain host name) or an empty string on error.
See also
Include files
<wx/utils.h>
bool wxGetEmailAddress(const wxString& buf, int sz)
Copies the user's email address into the supplied buffer, by concatenating the values returned by wxGetFullHostName and wxGetUserId.
Returns TRUE if successful, FALSE otherwise.
Include files
<wx/utils.h>
wxString wxGetHostName()
bool wxGetHostName(char * buf, int sz)
Copies the current host machine's name into the supplied buffer. Please note that the returned name is not fully qualified, i.e. it does not include the domain name.
Under Windows or NT, this function first looks in the environment variable SYSTEM_NAME; if this is not found, the entry HostName in the wxWindows section of the WIN.INI file is tried.
The first variant of this function returns the hostname if successful or an empty string otherwise. The second (deprecated) function returns TRUE if successful, FALSE otherwise.
See also
Include files
<wx/utils.h>