summaryrefslogtreecommitdiffstats
path: root/private/nw/inc/nwxchg.h
diff options
context:
space:
mode:
Diffstat (limited to 'private/nw/inc/nwxchg.h')
-rw-r--r--private/nw/inc/nwxchg.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/private/nw/inc/nwxchg.h b/private/nw/inc/nwxchg.h
new file mode 100644
index 000000000..fdfc388d9
--- /dev/null
+++ b/private/nw/inc/nwxchg.h
@@ -0,0 +1,45 @@
+/*++
+
+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_