mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Add TAG macro definition.
svn path=/trunk/; revision=16084
This commit is contained in:
parent
d864df4b3b
commit
b63e292fbd
4 changed files with 8 additions and 0 deletions
|
@ -33,6 +33,8 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
|
||||
|
||||
#include "debug.h"
|
||||
#include "packet.h"
|
||||
#include "win_bpf.h"
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
#include "packet.h"
|
||||
#include "win_bpf.h"
|
||||
|
||||
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
|
||||
|
||||
emit_func emitm;
|
||||
|
||||
//
|
||||
|
|
|
@ -30,6 +30,8 @@
|
|||
#include "debug.h"
|
||||
#include "packet.h"
|
||||
|
||||
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
|
||||
|
||||
static NDIS_MEDIUM MediumArray[] = {
|
||||
NdisMedium802_3,
|
||||
NdisMediumWan,
|
||||
|
|
|
@ -38,6 +38,8 @@
|
|||
|
||||
#include "tme.h"
|
||||
|
||||
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
|
||||
|
||||
#if DBG
|
||||
// Declare the global debug flag for this driver.
|
||||
//ULONG PacketDebugFlag = PACKET_DEBUG_LOUD;
|
||||
|
|
Loading…
Reference in a new issue