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.
54 lines
754 B
54 lines
754 B
//
|
|
// Common routines shared between the various consistency checker tools
|
|
//
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
VOID
|
|
_stdcall
|
|
ProductionMethod();
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
VOID
|
|
_stdcall
|
|
CheckNameConsistency();
|
|
|
|
int
|
|
_stdcall
|
|
GetNameResponse(
|
|
u_long *recvaddr
|
|
);
|
|
|
|
void
|
|
_stdcall
|
|
SendNameQuery(
|
|
unsigned char *name,
|
|
u_long winsaddr,
|
|
u_short TransID
|
|
);
|
|
|
|
void
|
|
_stdcall
|
|
InitSocket();
|
|
|
|
|
|
DWORD
|
|
_stdcall
|
|
GetStatus(
|
|
BOOL fPrint,
|
|
LPVOID pResultsA,
|
|
BOOL fNew,
|
|
BOOL fShort,
|
|
PUCHAR IpAddr
|
|
);
|
|
|
|
|
|
VOID
|
|
_stdcall
|
|
GetNameInfo(
|
|
PWINSINTF_RECORD_ACTION_T pRecAction,
|
|
WINSINTF_ACT_E Cmd_e
|
|
);
|