mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
- Move NDIS_VERSION into ndissys.h and use it for NdisGetVersion also
svn path=/trunk/; revision=41587
This commit is contained in:
@@ -28,6 +28,9 @@
|
||||
#define EXPORT NTAPI
|
||||
#endif
|
||||
|
||||
/* the version of NDIS we claim to be */
|
||||
#define NDIS_VERSION 0x00050001
|
||||
|
||||
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
|
||||
#define NDIS_TAG 0x4e4d4953
|
||||
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
|
||||
#include "ndissys.h"
|
||||
|
||||
#define NDIS_VERSION 0x00050001 /* the version of NDIS we claim to be to miniport drivers */
|
||||
#define PARAMETERS_KEY L"Parameters" /* The parameters subkey under the device-specific key */
|
||||
|
||||
/*
|
||||
|
||||
@@ -515,7 +515,7 @@ NdisGetVersion(VOID)
|
||||
{
|
||||
NDIS_DbgPrint(MAX_TRACE, ("Called.\n"));
|
||||
|
||||
return (UINT) 0x501;
|
||||
return NDIS_VERSION;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user