代码如下: 当在while循环中有 pstr[index][0] = (char*)ExAllocatePool(NonPagedPool() 类似时 ,就会出现如下错误 error LNK2019: unresolved external symbol __chkstk...
全文
回复(3) 2010-05-20 12:29 来自版块 - 软件调试
表情
sunsea你的二维数组是char*的 换成等效指针就是char *** 你可以试试*(*(pstr+index)+0) = (char*)ExAllocatePool 还有 你的声明少了个] char* pstr[100[10]; 应是char* pstr[100][10];(2013-04-04 20:16)
gao0717用户被禁言,该主题自动屏蔽!(2010-12-31 16:46)
itsayrYou defined this char* pstr[100][10] , and then you'd like to access pstr[index][0], are you kidding with me!!! take care for your poin...(2010-12-01 01:54)

返回顶部