mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
21 lines
554 B
C
21 lines
554 B
C
#ifndef _RDBSSDATA_
|
|
#define _RDBSSDATA_
|
|
|
|
extern RX_DISPATCHER RxDispatcher;
|
|
extern RX_WORK_QUEUE_DISPATCHER RxDispatcherWorkQueues;
|
|
|
|
extern KMUTEX RxSerializationMutex;
|
|
#define RxAcquireSerializationMutex() KeWaitForSingleObject(&RxSerializationMutex, Executive, KernelMode, FALSE, NULL)
|
|
#define RxReleaseSerializationMutex() KeReleaseMutex(&RxSerializationMutex, FALSE)
|
|
|
|
extern PRDBSS_DEVICE_OBJECT RxFileSystemDeviceObject;
|
|
|
|
#if DBG
|
|
extern ULONG RxFsdEntryCount;
|
|
#endif
|
|
|
|
extern LIST_ENTRY RxSrvCalldownList;
|
|
extern LIST_ENTRY RxActiveContexts;
|
|
|
|
#endif
|