mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
491 B
35 lines
491 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
WsNetbios.h
|
|
|
|
Abstract:
|
|
|
|
Contains structures, etc. for Netbios over sockets.
|
|
|
|
Author:
|
|
|
|
David Treadwell (davidtr) 12-Aug-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _WSNETBIOS_
|
|
#define _WSNETBIOS_
|
|
|
|
struct sockaddr_nb {
|
|
short snb_family;
|
|
short snb_type;
|
|
char snb_name[16];
|
|
};
|
|
|
|
typedef struct sockaddr_nb SOCKADDR_NB;
|
|
typedef struct sockaddr_nb *PSOCKADDR_NB;
|
|
|
|
#define AF_NETBIOS 17
|
|
|
|
#endif // ndef _WSNETBIOS_
|