L
Leehawk
Unregistered / Unconfirmed
GUEST, unregistred user!
我的枚举驱动用到ntdll.dll里的NtQuerySystemInformation;这样的做法在XP下是没问题的,结果也正常,在WIN2000下就不行。Len:= 0;NtQuerySystemInformation(11, nil, 0, @Len); //获取长度Buffer:= AllocMem(Len);try NtQuerySystemInformation(11, Buffer, Len, @ReturnLen);finally.....end;第一次调用NtQuerySystemInformation,以获取长度,WIN2000下总是返回0;我把第一个参数换成5,结果还是返回0。各位大侠,用NtQuerySystemInformation枚举驱动,WIN2000下不支持么?还是有做错的地方?