能力值:
( LV2,RANK:10 )
2 楼
有啊,看wrt
能力值:
( LV2,RANK:10 )
3 楼
KeInitializeApc KeInsertQueueApc 声明一下就可以用了
能力值:
(RANK:10 )
4 楼
No Results Found For: KeInitializeApc
Can’t find it? Here are some options:
Change your query to use different or fewer keywords.
Check your spelling. Tip: autocomplete on the search box can help you spell difficult terms.
Your search is currently refined, which restricts results. Search again with refinements removed.
Try asking a question in MSDN Forums.
能力值:
(RANK:10 )
5 楼
可是不知道怎么用啊?没有msdn官网文档?查不到啊?
能力值:
(RANK:10 )
6 楼
是不是非公开的api,windows不让使用的啊?
能力值:
( LV2,RANK:10 )
7 楼
VOID KeInitializeApc (
PKAPC Apc,
PETHREAD Thread,
KAPC_ENVIRONMENT Environment,
PKKERNEL_ROUTINE KernelRoutine,
PKRUNDOWN_ROUTINE RundownRoutine,
PKNORMAL_ROUTINE NormalRoutine,
KPROCESSOR_MODE ProcessorMode,
PVOID NormalContext
); extern "C"
BOOLEAN KeInsertQueueApc(PKAPC Apc,PVOID SystemArg1,PVOID SystemArg2,KPRIORITY Increment); PKAPC ExitApc=NULL;
ExitApc=(PKAPC)ExAllocatePoolWithTag(NonPagedPool,sizeof(KAPC),'root');
KeInitializeApc(ExitApc,
(PETHREAD)pThreadInfo[i].Thread, //线程
OriginalApcEnvironment,
KernelKillThreadRoutine,
NULL,
NULL,
KernelMode,
NULL);//为线程初始化APC
NTSTATUS status=KeInsertQueueApc(ExitApc,ExitApc,NULL,2); //插入Apc到线程队列
能力值:
(RANK:10 )
8 楼
谢谢,可是很疑惑为什么微软封杀了 APC,想看到微软系统的APC文档,各种apc函数的齐全的介绍。
就像DPC一样,微软msdn里面有系统介绍,而且不止这2个api,可能有10几个dpc函数,而apc函数为什么被
封杀了呢?或者有谁能提供详细的apc 的文章或网站吗?
能力值:
( LV3,RANK:30 )
9 楼
http://www.osronline.com/article.cfm?id=75
能力值:
( LV2,RANK:10 )
10 楼
不是封杀啊,只是没有公开而已。
能力值:
( LV2,RANK:10 )
11 楼
在WRK里搜