Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- NetLib for Clipper, Version 6.0 - n_netname( [ <ntable> ] ) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
N_NETNAME( [ <nTable> ] )


Parameters

<nTable>
Number (1-16) of a NetBIOS name table entry.


Returns

NetBIOS name table entry. If the function is called without an
argument, it returns the first entry in the table.


Description

NetBIOS permits each node to have up to 16 entries in its name table.
Each name is up to 15 characters.

Unless special commands or scripts are executed, each node has only one
name.


Example

// Display all names in the table
FOR x = 1 TO 16
   IF !EMPTY(N_NETNAME(x))
      ? x, N_NETNAME(x)
   ENDIF
NEXT



See Also: N_ADDR() N_NBADD()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson