Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

NAME_BUFFER (Structures)
 
.
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

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions