NAME_BUFFER (Structures)
Last changed: anonymous

.
Summary
The NAME_BUFFER structure contains information about a local network name via the (NetBIOS) API Call. One or more NAME_BUFFER structures follows an ADAPTER_STATUS structure when an application specifies the NCBASTAT command in the ncb_command member of the NCB structure.

C# Definition:

struct NAME_BUFFER {
   public TODO;
}

VB Definition:

Private Const NCBNAMSZ As Integer = 16

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> _
Private Structure NAME_BUFFER
   <MarshalAs(UnmanagedType.ByValTStr, SizeConst:=NCBNAMSZ)> Dim Name As String
   Dim name_num As Byte
   Dim name_flags As Byte
End Structure

User-Defined Field Types:

Considered Obsolete

Notes:

typedef struct _NAME_BUFFER {
   UCHAR name[NCBNAMSZ];
   UCHAR name_num;
   UCHAR name_flags;
} NAME_BUFFER, *PNAME_BUFFER;

Documentation
NAME_BUFFER on MSDN