Commit 72f2ba6f authored by Alexandre Julliard's avatar Alexandre Julliard

ntoskrnl.exe: Export KeServiceDescriptorTable and KeTickCount.

parent 7330edd2
......@@ -37,6 +37,20 @@
WINE_DEFAULT_DEBUG_CHANNEL(ntoskrnl);
KSYSTEM_TIME KeTickCount;
typedef struct _KSERVICE_TABLE_DESCRIPTOR
{
PULONG_PTR Base;
PULONG Count;
ULONG Limit;
PUCHAR Number;
} KSERVICE_TABLE_DESCRIPTOR, *PKSERVICE_TABLE_DESCRIPTOR;
KSERVICE_TABLE_DESCRIPTOR KeServiceDescriptorTable[4];
static inline LPCSTR debugstr_us( const UNICODE_STRING *us )
{
if (!us) return "<null>";
......
......@@ -603,7 +603,7 @@
@ stub KeRundownQueue
@ stub KeSaveFloatingPointState
@ stub KeSaveStateForHibernate
@ stub KeServiceDescriptorTable
@ extern KeServiceDescriptorTable
@ stub KeSetAffinityThread
@ stub KeSetBasePriorityThread
@ stub KeSetDmaIoCoherency
......@@ -622,7 +622,7 @@
@ stub KeStackAttachProcess
@ stub KeSynchronizeExecution
@ stub KeTerminateThread
@ stub KeTickCount
@ extern KeTickCount
@ stub KeUnstackDetachProcess
@ stub KeUpdateRunTime
@ stub KeUpdateSystemTime
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment