C
void FormatNetBIOSName( BYTE Name[16] );
Description
This function formats a string to a valid NetBIOS name. Names will be exactly 16 characters, as defined by the NetBIOS spec. The 16th character will be a 0x00 byte, while the other 15 will be the provided string, padded with spaces as necessary.
Preconditions
None
Parameters
Parameters |
Description |
Name |
the string to format as a NetBIOS name. This parameter must have at least 16 bytes allocated. |
Returns
None