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.
67 lines
1.0 KiB
67 lines
1.0 KiB
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
Copyright (c) 1993 Micro Computer Systems, Inc.
|
|
|
|
Module Name:
|
|
|
|
net\svcdlls\nwsap\server\sdmd.h
|
|
|
|
Abstract:
|
|
|
|
This include file is for programs that want to use the
|
|
SDMD functions. This has the public function declarations and
|
|
defines.
|
|
|
|
SDMD = Specialized Dynamic Memory Database
|
|
|
|
Author:
|
|
|
|
Brian Walker (MCS) 06-30-1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
INT
|
|
SapInitSdmd(
|
|
VOID);
|
|
|
|
VOID
|
|
SapShutdownSdmd(
|
|
VOID);
|
|
|
|
INT
|
|
SdmdTimeoutCheck(
|
|
VOID);
|
|
|
|
INT
|
|
SdmdUpdateEntry(
|
|
IN PUCHAR ServerName,
|
|
IN USHORT ServerType,
|
|
IN PUCHAR ServerAddr,
|
|
IN USHORT ServerHopCount,
|
|
IN INT CardNumber,
|
|
IN PUCHAR SendersAddress,
|
|
IN BOOL WanFlag);
|
|
|
|
INT
|
|
SdmdGetNearestServerLan(
|
|
PUCHAR Ptr,
|
|
USHORT ServType,
|
|
INT Cardnum,
|
|
UCHAR Bcast);
|
|
|
|
INT
|
|
SdmdGetNearestServerWan(
|
|
PUCHAR Ptr,
|
|
USHORT ServType,
|
|
INT Cardnum,
|
|
UCHAR Bcast,
|
|
INT *NumFoundp);
|
|
|
|
BOOL
|
|
SdmdIsServerInTable(
|
|
PUCHAR ServerName,
|
|
USHORT ServerType);
|