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.
45 lines
659 B
45 lines
659 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
nwxchg.h
|
|
|
|
Abstract:
|
|
|
|
Header for generic NCP calling routine.
|
|
|
|
Author:
|
|
|
|
Rita Wong (ritaw) 11-Mar-1993
|
|
|
|
Environment:
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _NW_XCHG_INCLUDED_
|
|
#define _NW_XCHG_INCLUDED_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
NTSTATUS
|
|
NwlibMakeNcp(
|
|
IN HANDLE DeviceHandle,
|
|
IN ULONG FsControlCode,
|
|
IN ULONG RequestBufferSize,
|
|
IN ULONG ResponseBufferSize,
|
|
IN PCHAR FormatString,
|
|
... // Arguments to FormatString
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif // _NW_XCHG_INCLUDED_
|