Leaked source code of windows server 2003
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.
 
 
 
 
 
 

46 lines
869 B

/*++
Copyright (c) 1991-1992 Microsoft Corporation
Module Name:
brwins.c
Abstract:
This module contains the routines to interface with the WINS name server.
Author:
Larry Osterman
Revision History:
--*/
#ifndef _BRWINS_
#define _BRWINS_
NET_API_STATUS
BrGetWinsServerName(
IN PUNICODE_STRING Network,
OUT LPTSTR *PrimaryWinsServerAddress,
OUT LPTSTR *SecondaryWinsServerAddress
);
NET_API_STATUS
BrQueryWinsServer(
IN LPTSTR PrimaryWinsServerAddress,
IN LPTSTR SecondaryWinsServerAddress,
OUT PVOID WinsServerList,
OUT PDWORD EntriesInList,
OUT PDWORD TotalEntriesInList
);
NET_API_STATUS
BrQuerySpecificWinsServer(
IN LPTSTR WinsServerAddress,
OUT PVOID *WinsServerList,
OUT PDWORD EntriesInList,
OUT PDWORD TotalEntriesInList
);
#endif