阅读:4712回复:4
错误信息:error C4013: 'ExAllocatePool' undefined; assuming extern returning int,请问如何解决!
在编写NDIS驱动的过程中,遇到如下错误信息:
error C4013: 'ExAllocatePool' undefined; assuming extern returning int,请问如何解决! 但我已经在头文件中包含了 #ifdef __cplusplus extern "C" { #endif #include <ntddk.h> #ifdef __cplusplus }; #endif |
|
沙发#
发布于:2010-02-02 18:20
Re:错误信息:error C4013: 'ExAllocatePool' undefined; assuming extern returning int,请问 ..
char *pTempBuf = NULL;pTempBuf = (char *) ExAllocatePool( NonPagedPool , SpecialCodeAndArgBufSize ); |
|
板凳#
发布于:2010-02-03 20:56
Re:错误信息:error C4013: 'ExAllocatePool' undefined; assuming extern returning int,请问 ..
解决了!呵呵 |
|
地板#
发布于:2010-02-04 06:50
Re:错误信息:error C4013: 'ExAllocatePool' undefined; assuming extern returning int,请问 ..
建议用 ExAllocatePoolwithtag |
|
|
地下室#
发布于:2010-02-04 16:50
Re:错误信息:error C4013: 'ExAllocatePool' undefined; assuming extern returning int,请问 ..
是的,我改为用ExAllocatePoolwithtag了,谢谢 |
|