Reactos

[NETWORK:NE2000] Move the NDIS_* defines to the CMakeFiles.txt

+5 -3
+5
drivers/network/dd/ne2000/CMakeLists.txt
··· 1 1 2 2 include_directories(BEFORE include) 3 3 4 + add_definitions( 5 + -DNDIS51_MINIPORT 6 + -DNDIS_MINIPORT_DRIVER 7 + -DNDIS_LEGACY_MINIPORT=1) 8 + 4 9 list(APPEND SOURCE 5 10 ne2000/8390.c 6 11 ne2000/main.c
-3
drivers/network/dd/ne2000/include/ne2000.h
··· 8 8 #ifndef _NE2000_PCH_ 9 9 #define _NE2000_PCH_ 10 10 11 - #define NDIS_MINIPORT_DRIVER 12 - #define NDIS_LEGACY_MINIPORT 1 13 - #define NDIS51_MINIPORT 14 11 #include <ndis.h> 15 12 #include <8390.h> 16 13