在内核驱动中得到 KeServiceDescriptorTableShadow
2010年5月21日
头文件:
//
// svcdesctbl.h
//
#pragma once
typedef struct _KSERVICE_TABLE_DESCRIPTOR {
PULONG_PTR Base; // Service Table Base
PULONG Count; // Service Counter Table Base, Used only in checked build
ULONG Limit;
PUCHAR Number;
} KSERVICE_TABLE_DESCRIPTOR, *PKSERVICE_TABLE_DESCRIPTOR;
#define NUMBER_SERVICE_TABLES 2
__declspec(dllimport) KSERVICE_TABLE_DESCRIPTOR
KeServiceDescriptorTable[NUMBER_SERVICE_TABLES];
KSERVICE_TABLE_DESCRIPTOR * Get_KeServiceDescriptorTableShadow ();

近期评论