Skip to content

Latest commit

 

History

History
60 lines (50 loc) · 1.3 KB

gethostname-type.md

File metadata and controls

60 lines (50 loc) · 1.3 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Specifies the type of host name.
GETHOSTNAME_TYPE
11/04/2016
reference
GETHOSTNAME_TYPE
GETHOSTNAME_TYPE enumeration
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

GETHOSTNAME_TYPE

Specifies the type of host name.

Syntax

public enum enum_GETHOSTNAME_TYPE {
    GHN_FRIENDLY_NAME = 0,
    GHN_FILE_NAME     = 1
};
enum enum_GETHOSTNAME_TYPE {
    GHN_FRIENDLY_NAME = 0,
    GHN_FILE_NAME     = 1
};
typedef DWORD GETHOSTNAME_TYPE;

Fields

GHN_FRIENDLY_NAME
Specifies a friendly name of the host.

GHN_FILE_NAME
Specifies a file name of the host.

Remarks

These values are passed as an argument to the GetHostName method to retrieve a host name in different formats.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also