mirror of https://github.com/tongzx/nt5src
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
512 B
35 lines
512 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
netstats.h
|
|
|
|
Abstract:
|
|
|
|
Contains prototypes for private net stats routines
|
|
|
|
Author:
|
|
|
|
Richard L Firth (rfirth) 21-Jan-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
NET_API_STATUS
|
|
NetWkstaStatisticsGet(
|
|
IN LPTSTR ServerName,
|
|
IN DWORD Level,
|
|
IN DWORD Options,
|
|
OUT LPBYTE* Buffer
|
|
);
|
|
|
|
NET_API_STATUS
|
|
NetServerStatisticsGet(
|
|
IN LPTSTR ServerName,
|
|
IN DWORD Level,
|
|
IN DWORD Options,
|
|
OUT LPBYTE* Buffer
|
|
);
|