阅读:1432回复:4
在passthr中的PtReceivePacket加入自己代码的问题!!!!
我在PtReceivePacket函数中加入UINT PacketSize;
用freebuild模式build -cz总是出现四个错误: 1.UINT:illeage use of this type as an expression 2.error see declation of UINT 3.syntax error;missing \';\' before identifier PacketSize 4.PacketSize:undeclared identifier 为什么啊?求助! |
|
沙发#
发布于:2003-10-08 15:00
你加在那个位置的啊,这里可用的是C编译方式啊!
|
|
|
板凳#
发布于:2003-10-09 15:58
显然是加的位置不正确。
|
|
|
地板#
发布于:2003-10-10 11:04
例如:
PVOID MediaSpecificInfo=NULL; ULONG MediaSpecificSize=0; //⑴ DBGPRINT((\"==> PtReceive \\n\")); if(!pAdapt->MiniportHandle) { Status = NDIS_STATUS_FAILURE; } //⑵ 你应该加在⑴处,加在⑵处便会出错。 变量定义只能放在语句前面。 :D |
|
地下室#
发布于:2003-10-19 10:13
UINT是define的一个宏,你没有定义它,所以编译错误。
|
|