summaryrefslogtreecommitdiffstats
path: root/private/inc/xactsrv.h
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/inc/xactsrv.h
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/inc/xactsrv.h')
-rw-r--r--private/inc/xactsrv.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/private/inc/xactsrv.h b/private/inc/xactsrv.h
new file mode 100644
index 000000000..8cfe55b9b
--- /dev/null
+++ b/private/inc/xactsrv.h
@@ -0,0 +1,44 @@
+/*++
+
+Copyright (c) 1991 Microsoft Corporation
+
+Module Name:
+
+ xactsrv.h
+
+Abstract:
+
+ Header file for XACTSRV. Defines structures common to the server and
+ XACTSRV.
+
+Author:
+
+ David Treadwell (davidtr) 07-Jan-1991
+
+Revision History:
+
+--*/
+
+#ifndef _XACTSRV_
+#define _XACTSRV_
+
+//
+// Structures for messages that are passed across the LPC port between
+// the server and XACTSRV.
+//
+// *** The PORT_MESSAGE structure *must* be the first element of these
+// structures!
+
+typedef struct _XACTSRV_REQUEST_MESSAGE {
+ PORT_MESSAGE PortMessage;
+ PTRANSACTION Transaction;
+ WCHAR ClientMachineName[CNLEN + 1];
+} XACTSRV_REQUEST_MESSAGE, *PXACTSRV_REQUEST_MESSAGE;
+
+typedef struct _XACTSRV_REPLY_MESSAGE {
+ PORT_MESSAGE PortMessage;
+ NTSTATUS Status;
+} XACTSRV_REPLY_MESSAGE, *PXACTSRV_REPLY_MESSAGE;
+
+#endif // ndef _XACTSRV_
+