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.
73 lines
769 B
73 lines
769 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
proc.h
|
|
|
|
Abstract:
|
|
|
|
Global procedure definitions for the MSAFD NTSD Debugger Extensions.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 20-May-1996.
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _PROC_H_
|
|
#define _PROC_H_
|
|
|
|
|
|
//
|
|
// Functions from SOCKUTIL.C
|
|
//
|
|
|
|
VOID
|
|
DumpSocket(
|
|
PSOCKET_INFORMATION Socket,
|
|
DWORD ActualAddress
|
|
);
|
|
|
|
VOID
|
|
DumpSockaddr(
|
|
PSTR Prefix,
|
|
PSOCKADDR Sockaddr,
|
|
DWORD ActualAddress
|
|
);
|
|
|
|
|
|
//
|
|
// Functions from DBGUTIL.C.
|
|
//
|
|
|
|
PSTR
|
|
LongLongToString(
|
|
LONGLONG Value
|
|
);
|
|
|
|
PSTR
|
|
BooleanToString(
|
|
BOOLEAN Value
|
|
);
|
|
|
|
|
|
//
|
|
// Functions from ENUMSOCK.C
|
|
//
|
|
|
|
VOID
|
|
EnumSockets(
|
|
PENUM_SOCKETS_CALLBACK Callback,
|
|
LPVOID Context
|
|
);
|
|
|
|
|
|
#endif // _PROC_H_
|
|
|