"Marcin ZajÄczkowski" said: > I can't check it, bacause I haven't actually installed VS (and I haven't > TDI headers to compile it in Dev-C++). What is more, as I read this > program works only on w2k and I have WinXP.
Dev C++ uses MingW, right? So it can compile it if you just use this instead: #if defined(__MINGW32__) #include <ddk/ntddk.h> #include <ddk/tdikrnl.h> #else #include <ntddk.h> #include <tdikrnl.h> #endif The program works under Win-XP too. --gv ================================================================= This is the WinPcap users list. It is archived at http://www.mail-archive.com/[EMAIL PROTECTED]/ To unsubscribe use mailto: [EMAIL PROTECTED] =================================================================
