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.
69 lines
1.1 KiB
69 lines
1.1 KiB
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
xsdata.h
|
|
|
|
Abstract:
|
|
|
|
Header file for XACTSRV global data.
|
|
|
|
Author:
|
|
|
|
David Treadwell (davidtr) 05-Jan-1991
|
|
Shanku Niyogi (w-shanku)
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _XSDATA_
|
|
#define _XSDATA_
|
|
|
|
#include <nturtl.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <rap.h>
|
|
#include <xstypes.h>
|
|
#include <ntmsv1_0.h>
|
|
|
|
//
|
|
// Number of XACTSRV threads
|
|
//
|
|
extern LONG XsThreads;
|
|
|
|
//
|
|
// Event signalled when the last XACTSRV worker thread terminates.
|
|
//
|
|
|
|
extern HANDLE XsAllThreadsTerminatedEvent;
|
|
|
|
//
|
|
// Boolean indicating whether XACTSRV is active or terminating.
|
|
//
|
|
|
|
extern BOOL XsTerminating;
|
|
|
|
//
|
|
// Handle for the LPC port used for communication between the file server
|
|
// and XACTSRV.
|
|
//
|
|
|
|
extern HANDLE XsConnectionPortHandle;
|
|
extern HANDLE XsCommunicationPortHandle;
|
|
|
|
//
|
|
// Table of information necessary for dispatching API requests.
|
|
// XsProcessApis uses the API number in the request transaction find
|
|
// the appropriate entry.
|
|
//
|
|
|
|
#define XS_SIZE_OF_API_TABLE 216
|
|
|
|
extern XS_API_TABLE_ENTRY XsApiTable[XS_SIZE_OF_API_TABLE];
|
|
|
|
#endif // ndef _XSDATA_
|
|
|